From: Alan Cox Date: Mon, 8 Jun 2009 11:31:00 +0000 (+0100) Subject: pata_netcell: Fix typo X-Git-Tag: firefly_0821_release~14028 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5284c6b99ea017f73c09b50f34a637ff9d5d26a0;p=firefly-linux-kernel-4.4.55.git 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 Signed-off-by: Linus Torvalds --- 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, unsigned int err_mask = ata_do_dev_read_id(adev, tf, id); /* Firmware forgets to mark words 85-87 valid */ if (err_mask == 0) - id[ATA_ID_CSF_DEFAULT] |= 0x0400; + id[ATA_ID_CSF_DEFAULT] |= 0x4000; return err_mask; }