diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2016-02-05 23:58:12 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2016-02-06 01:29:28 +0300 |
commit | 952bbcb0781bd1341f6a9f5c96fc32737392c04a (patch) | |
tree | a83655d86bf160aa40a0cedfac4e60c86a7a7080 /drivers/scsi/mac53c94.c | |
parent | b6b83f7fdae7cae5260b907510619a47bd29cd70 (diff) | |
download | linux-952bbcb0781bd1341f6a9f5c96fc32737392c04a.tar.xz |
PCI: Remove includes of asm/pci-bridge.h
Drivers should include asm/pci-bridge.h only when they need the arch-
specific things provided there. Outside of the arch/ directories, the only
drivers that actually need things provided by asm/pci-bridge.h are the
powerpc RPA hotplug drivers in drivers/pci/hotplug/rpa*.
Remove the includes of asm/pci-bridge.h from the other drivers, adding an
include of linux/pci.h if necessary.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/scsi/mac53c94.c')
-rw-r--r-- | drivers/scsi/mac53c94.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/mac53c94.c b/drivers/scsi/mac53c94.c index 141226631429..a6682c508c4c 100644 --- a/drivers/scsi/mac53c94.c +++ b/drivers/scsi/mac53c94.c @@ -18,11 +18,11 @@ #include <linux/spinlock.h> #include <linux/interrupt.h> #include <linux/module.h> +#include <linux/pci.h> #include <asm/dbdma.h> #include <asm/io.h> #include <asm/pgtable.h> #include <asm/prom.h> -#include <asm/pci-bridge.h> #include <asm/macio.h> #include <scsi/scsi.h> |