Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d8dafd8ccde06f16095234dc3addf52b511805b3
Commit:     d8dafd8ccde06f16095234dc3addf52b511805b3
Parent:     7523c4dd9923cab748dad9b79d0165e118e3d03b
Author:     Randy Dunlap <[EMAIL PROTECTED]>
AuthorDate: Tue Nov 21 13:50:47 2006 -0800
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Wed Jan 3 16:57:22 2007 -0600

    [SCSI] advansys: wrap PCI table inside ifdef CONFIG_PCI
    
    The Advansys ISA/EISA/PCI driver has a compile error when
    CONFIG_PCI=n, so wrap the pci_device_id table inside
    ifdef CONFIG_PCI.
    
    drivers/scsi/advansys.c: At top level:
    drivers/scsi/advansys.c:18219: error: array type has incomplete element type
    drivers/scsi/advansys.c:18221: error: 'PCI_ANY_ID' undeclared here (not in 
a function)
    make[2]: *** [drivers/scsi/advansys.o] Error 1
    make[1]: *** [drivers/scsi] Error 2
    make: *** [drivers] Error 2
    
    Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/advansys.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/advansys.c b/drivers/scsi/advansys.c
index 2b34435..306bec3 100644
--- a/drivers/scsi/advansys.c
+++ b/drivers/scsi/advansys.c
@@ -18215,6 +18215,7 @@ AdvInquiryHandling(
 }
 MODULE_LICENSE("Dual BSD/GPL");
 
+#ifdef CONFIG_PCI
 /* PCI Devices supported by this driver */
 static struct pci_device_id advansys_pci_tbl[] __devinitdata = {
        { PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_1200A,
@@ -18232,4 +18233,4 @@ static struct pci_device_id advansys_pci_tbl[] 
__devinitdata = {
        { }
 };
 MODULE_DEVICE_TABLE(pci, advansys_pci_tbl);
-
+#endif /* CONFIG_PCI */
-
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