diff options
Diffstat (limited to 'drivers/ide/pci/hpt366.c')
-rw-r--r-- | drivers/ide/pci/hpt366.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/ide/pci/hpt366.c b/drivers/ide/pci/hpt366.c index c37ab1743819..b7f77fd3cb6e 100644 --- a/drivers/ide/pci/hpt366.c +++ b/drivers/ide/pci/hpt366.c | |||
@@ -605,10 +605,10 @@ static const struct hpt_info hpt371n __devinitdata = { | |||
605 | 605 | ||
606 | static int check_in_drive_list(ide_drive_t *drive, const char **list) | 606 | static int check_in_drive_list(ide_drive_t *drive, const char **list) |
607 | { | 607 | { |
608 | struct hd_driveid *id = drive->id; | 608 | char *m = (char *)&drive->id[ATA_ID_PROD]; |
609 | 609 | ||
610 | while (*list) | 610 | while (*list) |
611 | if (!strcmp(*list++,id->model)) | 611 | if (!strcmp(*list++, m)) |
612 | return 1; | 612 | return 1; |
613 | return 0; | 613 | return 0; |
614 | } | 614 | } |
@@ -731,11 +731,11 @@ static void hpt3xx_set_pio_mode(ide_drive_t *drive, const u8 pio) | |||
731 | 731 | ||
732 | static void hpt3xx_quirkproc(ide_drive_t *drive) | 732 | static void hpt3xx_quirkproc(ide_drive_t *drive) |
733 | { | 733 | { |
734 | struct hd_driveid *id = drive->id; | 734 | char *m = (char *)&drive->id[ATA_ID_PROD]; |
735 | const char **list = quirk_drives; | 735 | const char **list = quirk_drives; |
736 | 736 | ||
737 | while (*list) | 737 | while (*list) |
738 | if (strstr(id->model, *list++)) { | 738 | if (strstr(m, *list++)) { |
739 | drive->quirk_list = 1; | 739 | drive->quirk_list = 1; |
740 | return; | 740 | return; |
741 | } | 741 | } |