diff options
author | Alan Cox <alan@linux.intel.com> | 2009-06-08 07:31:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-08 12:12:28 -0400 |
commit | 5284c6b99ea017f73c09b50f34a637ff9d5d26a0 (patch) | |
tree | 9bcaab75026c94d92e54e1ec74395b3236d445b7 /drivers | |
parent | c7e9cb4c0c6d6807e9b07ec1b01fecac0c7b0532 (diff) |
pata_netcell: Fix typo
The previous patch submission had a I typo I didn't catch but Bartlomiej
noted. Guess this proves the point about any patch being risky late in an rc
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ata/pata_netcell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/pata_netcell.c b/drivers/ata/pata_netcell.c index 9a698097134b..f0d52f72f5bb 100644 --- a/drivers/ata/pata_netcell.c +++ b/drivers/ata/pata_netcell.c | |||
@@ -26,7 +26,7 @@ static unsigned int netcell_read_id(struct ata_device *adev, | |||
26 | unsigned int err_mask = ata_do_dev_read_id(adev, tf, id); | 26 | unsigned int err_mask = ata_do_dev_read_id(adev, tf, id); |
27 | /* Firmware forgets to mark words 85-87 valid */ | 27 | /* Firmware forgets to mark words 85-87 valid */ |
28 | if (err_mask == 0) | 28 | if (err_mask == 0) |
29 | id[ATA_ID_CSF_DEFAULT] |= 0x0400; | 29 | id[ATA_ID_CSF_DEFAULT] |= 0x4000; |
30 | return err_mask; | 30 | return err_mask; |
31 | } | 31 | } |
32 | 32 | ||