summaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorRob Herring2013-09-07 21:07:11 +0200
committerRob Herring2013-10-10 03:04:06 +0200
commit25ff79443cbfa924b8df1d4a8a0fbff83816938a (patch)
treee7a9ac5cb39449b55d132c0838f7d866bc7d703c /arch/mips
parentx86: add necessary includes for prom.h (diff)
downloadkernel-qcow2-linux-25ff79443cbfa924b8df1d4a8a0fbff83816938a.tar.gz
kernel-qcow2-linux-25ff79443cbfa924b8df1d4a8a0fbff83816938a.tar.xz
kernel-qcow2-linux-25ff79443cbfa924b8df1d4a8a0fbff83816938a.zip
of: implement pci_address_to_pio as weak function
Implement pci_address_to_pio as weak function to remove the dependency on asm/prom.h. This is in preparation to make prom.h optional. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Acked-by: Grant Likely <grant.likely@linaro.org> Cc: Michal Simek <monstr@monstr.eu> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: x86@kernel.org Cc: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/include/asm/prom.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/mips/include/asm/prom.h b/arch/mips/include/asm/prom.h
index e3dbd0e0608e..ccd2b75f152c 100644
--- a/arch/mips/include/asm/prom.h
+++ b/arch/mips/include/asm/prom.h
@@ -19,17 +19,6 @@
extern void device_tree_init(void);
-static inline unsigned long pci_address_to_pio(phys_addr_t address)
-{
- /*
- * The ioport address can be directly used by inX() / outX()
- */
- BUG_ON(address > IO_SPACE_LIMIT);
-
- return (unsigned long) address;
-}
-#define pci_address_to_pio pci_address_to_pio
-
struct boot_param_header;
extern void __dt_setup_arch(struct boot_param_header *bph);