Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f3577db0 authored by Junio C Hamano's avatar Junio C Hamano Committed by Bartlomiej Zolnierkiewicz
Browse files

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: default avatarJunio C Hamano <junkio@cox.net>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Dave Jones <davej@redhat.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent bb53cfe9
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;