Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f3577db0c294ab4ce8460a8003312474b509e95f
Commit:     f3577db0c294ab4ce8460a8003312474b509e95f
Parent:     bb53cfe9fa21c4f875d5c9470865fbbd0657804e
Author:     Junio C Hamano <[EMAIL PROTECTED]>
AuthorDate: Mon Jul 9 23:17:57 2007 +0200
Committer:  Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
CommitDate: Mon Jul 9 23:17:57 2007 +0200

    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 <[EMAIL PROTECTED]>
    Cc: Alan Cox <[EMAIL PROTECTED]>
    Cc: Dave Jones <[EMAIL PROTECTED]>
    Signed-off-by: Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
---
 drivers/ide/ide-dma.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c
index e80f8e1..85db8e8 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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to