diff options
author | Tejun Heo <htejun@gmail.com> | 2007-01-02 06:18:49 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-09 17:39:30 -0500 |
commit | a0cf733b333eeeafb7324e2897448006c693c26c (patch) | |
tree | 9a08b3e197cf4d1d17c39ed93cbcdd26fd722316 /drivers/ata/sata_sil.c | |
parent | cdf56bcf14b9d441777703eef95eef807e4136ec (diff) |
libata: straighten out ATA_ID_* constants
* Kill _OFS suffixes in ATA_ID_{SERNO|FW_REV|PROD}_OFS for consistency
with other ATA_ID_* constants.
* Kill ATA_SERNO_LEN
* Add and use ATA_ID_SERNO_LEN, ATA_ID_FW_REV_LEN and ATA_ID_PROD_LEN.
This change also makes ata_device_blacklisted() use proper length
for fwrev.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/sata_sil.c')
-rw-r--r-- | drivers/ata/sata_sil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/sata_sil.c b/drivers/ata/sata_sil.c index 7808d0369d91..d27ab312cdfb 100644 --- a/drivers/ata/sata_sil.c +++ b/drivers/ata/sata_sil.c | |||
@@ -541,9 +541,9 @@ static void sil_dev_config(struct ata_port *ap, struct ata_device *dev) | |||
541 | { | 541 | { |
542 | int print_info = ap->eh_context.i.flags & ATA_EHI_PRINTINFO; | 542 | int print_info = ap->eh_context.i.flags & ATA_EHI_PRINTINFO; |
543 | unsigned int n, quirks = 0; | 543 | unsigned int n, quirks = 0; |
544 | unsigned char model_num[41]; | 544 | unsigned char model_num[ATA_ID_PROD_LEN + 1]; |
545 | 545 | ||
546 | ata_id_c_string(dev->id, model_num, ATA_ID_PROD_OFS, sizeof(model_num)); | 546 | ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num)); |
547 | 547 | ||
548 | for (n = 0; sil_blacklist[n].product; n++) | 548 | for (n = 0; sil_blacklist[n].product; n++) |
549 | if (!strcmp(sil_blacklist[n].product, model_num)) { | 549 | if (!strcmp(sil_blacklist[n].product, model_num)) { |