Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=22888423b3b1b96573250671afb5b72ea4364902
Commit:     22888423b3b1b96573250671afb5b72ea4364902
Parent:     bd9c5a39e4141678bd6242e5b74bfe39d8d0be35
Author:     Olof Johansson <[EMAIL PROTECTED]>
AuthorDate: Sun Jun 3 18:35:10 2007 -0500
Committer:  Jeff Garzik <[EMAIL PROTECTED]>
CommitDate: Sat Jun 9 22:40:28 2007 -0400

    libata: fix probe time irq printouts
    
    Most drivers don't seem to fill out the host->irq field, resulting in the
    wrong (no) irq being reported at probe time. For example, sil24 on my 
system:
    
    ata1: SATA max UDMA/100 cmd 0xd00008009001f000 ctl 0x0000000000000000 bmdma 
0x0000000000000000 irq 0
    ata2: SATA max UDMA/100 cmd 0xd000080090021000 ctl 0x0000000000000000 bmdma 
0x0000000000000000 irq 0
    
    Since they're allocated and set up in ata_host_activate(), just save
    them away there.
    
    Signed-off-by: Olof Johansson <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
---
 drivers/ata/libata-core.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index 6a8a517..c90c8e0 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -6435,6 +6435,9 @@ int ata_host_activate(struct ata_host *host, int irq,
        if (rc)
                devm_free_irq(host->dev, irq, host);
 
+       /* Used to print device info at probe */
+       host->irq = irq;
+
        return rc;
 }
 
-
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