diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-07-29 13:29:06 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-07-29 13:29:06 -0700 |
commit | 1a81a8f2a5918956e214bb718099a89e500e7ec5 (patch) | |
tree | 3ee00d0259b0f1c9f70784a835522365246ce7c0 /drivers/ide/pmac.c | |
parent | 86505fc06b6f1ee8a13473053a41ed01948e2d4f (diff) | |
parent | d4f8c2e0f827a0b3a322c449ac331ae41feeb359 (diff) | |
download | linux-1a81a8f2a5918956e214bb718099a89e500e7ec5.tar.gz |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide
Pull IDE updates from David Miller:
"Just a couple small bug fixes, nothing overly exciting in here"
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide:
ide: missing break statement in set_timings_mdma()
ide: hpt366: fix incorrect mask when checking at cmd_high_time
ide-tape: fix misprint in failure handling in idetape_init()
cmd640: add __init attribute
Diffstat (limited to 'drivers/ide/pmac.c')
-rw-r--r-- | drivers/ide/pmac.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ide/pmac.c b/drivers/ide/pmac.c index 7f0434f7e486..0c5d3a99468e 100644 --- a/drivers/ide/pmac.c +++ b/drivers/ide/pmac.c @@ -707,6 +707,7 @@ set_timings_mdma(ide_drive_t *drive, int intf_type, u32 *timings, u32 *timings2, *timings = ((*timings) & ~TR_133_PIOREG_MDMA_MASK) | tr; *timings2 = (*timings2) & ~TR_133_UDMAREG_UDMA_EN; } + break; case controller_un_ata6: case controller_k2_ata6: { /* 100Mhz cell */ |