The patch titled SCSI: advansys, wrap PCI table inside ifdef CONFIG_PCI has been added to the -mm tree. Its filename is scsi-advansys-wrap-pci-table-inside-ifdef-config_pci.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: SCSI: advansys, wrap PCI table inside ifdef CONFIG_PCI From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> 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 <randy.dunlap@xxxxxxxxxx> Cc: <bobf@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/scsi/advansys.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/scsi/advansys.c~scsi-advansys-wrap-pci-table-inside-ifdef-config_pci drivers/scsi/advansys.c --- a/drivers/scsi/advansys.c~scsi-advansys-wrap-pci-table-inside-ifdef-config_pci +++ a/drivers/scsi/advansys.c @@ -18133,6 +18133,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, @@ -18150,4 +18151,4 @@ static struct pci_device_id advansys_pci { } }; MODULE_DEVICE_TABLE(pci, advansys_pci_tbl); - +#endif /* CONFIG_PCI */ _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch debugfs-add-header-file.patch qconf-fix-uninitialised-member.patch git-acpi.patch korg1212-fix-printk-format-warning.patch cpufreq-select-consistently-re-2619-rc5-mm1.patch git-ieee1394.patch git-infiniband.patch mtd-fix-printk-format-warning.patch git-ocfs2.patch parisc-fix-module_param-iommu-permission.patch scsi-advansys-wrap-pci-table-inside-ifdef-config_pci.patch fuse-fix-compile-without-config_block.patch tifm-fix-null-ptr-and-style.patch kconfig-printk_time-depends-on-printk.patch hpfs-fix-printk-format-warnings.patch i2o-handle-__copy_from_user.patch i2o-fix-i2o_config-without-adaptec-extension.patch parport-section-mismatches-with-hotplug=n.patch agp-amd64-section-mismatches-with-hotplug=n.patch scsi-initio-section-mismatches-with-hotplug=n.patch ciss-require-same-scsi-module-support.patch export-toshiba-smm-support-for-neofb-module.patch generic-bug-implementation-handle-bug=n.patch visws-sgivwfb-is-module-needs-exports.patch extend-notifier_call_chain-to-count-nr_calls-made-fixes.patch profile_likely-export-do_check_likely.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html