aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-07-09 23:17:57 +0200
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2007-07-09 23:17:57 +0200
commitf3577db0c294ab4ce8460a8003312474b509e95f (patch)
treebcebdc1236375767ef5f514e5727771a224f413c /drivers/ide
parentmips au1xxx_ide.h: use NULL as firmware-revision wildcard (diff)
downloadlinux-dev-f3577db0c294ab4ce8460a8003312474b509e95f.tar.xz
linux-dev-f3577db0c294ab4ce8460a8003312474b509e95f.zip
ide_in_drive_list(): "ALL" is not a wildcard anymore
This removes the support to treat "ALL" as a wildcard for firmware revision. This is made a separate patch, as it will break out-of-tree ide drivers that feed its own table that uses "ALL" as the wildcard to ide_in_drive_list(). Signed-off-by: Junio C Hamano <junkio@cox.net> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Cc: Dave Jones <davej@redhat.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide')
-rw-r--r--drivers/ide/ide-dma.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c
index e80f8e1a0b93..85db8e85443a 100644
--- a/drivers/ide/ide-dma.c
+++ b/drivers/ide/ide-dma.c
@@ -148,7 +148,6 @@ int ide_in_drive_list(struct hd_driveid *id, const struct drive_list_entry *driv
for ( ; drive_table->id_model ; drive_table++)
if ((!strcmp(drive_table->id_model, id->model)) &&
(!drive_table->id_firmware ||
- !strcmp(drive_table->id_firmware, "ALL") || /* to be removed later */
strstr(id->fw_rev, drive_table->id_firmware)))
return 1;
return 0;