diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2016-03-17 14:22:35 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-03-17 15:09:34 -0700 |
commit | 9adb9254f4b0f591282f713de5356a9e75a44da3 (patch) | |
tree | 96482a72735485750d8dbab0426beeeef7ba6a3c /drivers/ide | |
parent | 908913bdbddc0b0f00e898bfc771ae625f7a6ab3 (diff) | |
download | linux-stable-9adb9254f4b0f591282f713de5356a9e75a44da3.tar.gz linux-stable-9adb9254f4b0f591282f713de5356a9e75a44da3.tar.bz2 linux-stable-9adb9254f4b0f591282f713de5356a9e75a44da3.zip |
ide: hpt366: convert to use match_string() helper
The new helper returns index of the mathing string in an array. We
would use it here.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/hpt366.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/ide/hpt366.c b/drivers/ide/hpt366.c index 696b6c1ec940..f94baadbf424 100644 --- a/drivers/ide/hpt366.c +++ b/drivers/ide/hpt366.c @@ -531,14 +531,9 @@ static const struct hpt_info hpt371n = { .timings = &hpt37x_timings }; -static int check_in_drive_list(ide_drive_t *drive, const char **list) +static bool check_in_drive_list(ide_drive_t *drive, const char **list) { - char *m = (char *)&drive->id[ATA_ID_PROD]; - - while (*list) - if (!strcmp(*list++, m)) - return 1; - return 0; + return match_string(list, -1, (char *)&drive->id[ATA_ID_PROD]) >= 0; } static struct hpt_info *hpt3xx_get_info(struct device *dev) |