aboutsummaryrefslogtreecommitdiff
path: root/src/arch/ppc/include/arch/pciconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/ppc/include/arch/pciconf.h')
-rw-r--r--src/arch/ppc/include/arch/pciconf.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/arch/ppc/include/arch/pciconf.h b/src/arch/ppc/include/arch/pciconf.h
deleted file mode 100644
index 790a6bac65..0000000000
--- a/src/arch/ppc/include/arch/pciconf.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef _PCICONF_H
-#define _PCICONF_H
-
-/*
- * Direct access to PCI hardware...
- */
-uint8_t pci_ppc_read_config8(unsigned char, int, int);
-uint16_t pci_ppc_read_config16(unsigned char, int, int);
-uint32_t pci_ppc_read_config32(unsigned char, int, int);
-int pci_ppc_write_config8(unsigned char, int, int, uint8_t);
-int pci_ppc_write_config16(unsigned char, int, int, uint16_t);
-int pci_ppc_write_config32(unsigned char, int, int, uint32_t);
-
-#define CONFIG_CMD(bus,devfn,where) \
- ((bus << 16) | (devfn << 8) | (where & ~3) | 0x80000000)
-
-#endif /* _PCICONF_H */