aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYoichi Yuasa <yuasa@hh.iij4u.or.jp>2005-09-03 18:56:19 -0400
committerLinus Torvalds <torvalds@evo.osdl.org>2005-09-05 03:06:08 -0400
commite2de84920d9489f7fd87fa4b04d996d569def4fa (patch)
tree85dbab6cbb94a4e8db9b54869607f312f313ef4e
parent4ce588cd563e6b817adb0c7d03b3ed9c74cadc27 (diff)
[PATCH] mips: add pcibios_select_root
Add pcibios_select_root to MIPS. Signed-off-by: Yoichi Yuasa <yuasa@hh.iij4u.or.jp> Cc: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--include/asm-mips/pci.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-mips/pci.h b/include/asm-mips/pci.h
index 092900f11654..049f01f648ed 100644
--- a/include/asm-mips/pci.h
+++ b/include/asm-mips/pci.h
@@ -167,4 +167,17 @@ static inline void pcibios_add_platform_entries(struct pci_dev *dev)
167/* Do platform specific device initialization at pci_enable_device() time */ 167/* Do platform specific device initialization at pci_enable_device() time */
168extern int pcibios_plat_dev_init(struct pci_dev *dev); 168extern int pcibios_plat_dev_init(struct pci_dev *dev);
169 169
170static inline struct resource *
171pcibios_select_root(struct pci_dev *pdev, struct resource *res)
172{
173 struct resource *root = NULL;
174
175 if (res->flags & IORESOURCE_IO)
176 root = &ioport_resource;
177 if (res->flags & IORESOURCE_MEM)
178 root = &iomem_resource;
179
180 return root;
181}
182
170#endif /* _ASM_PCI_H */ 183#endif /* _ASM_PCI_H */