summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/pci.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-25 17:52:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-25 17:52:06 +0000
commite1c9abde95f4f351a4b68fb69f9a881dfcac0996 (patch)
treec6e02090e0f5292afab47d2ae8ae3e3518cf670b /cpukit/include/rtems/pci.h
parent2009-09-25 Sebastian Huber <Sebastian.Huber@embedded-brains.de> (diff)
downloadrtems-e1c9abde95f4f351a4b68fb69f9a881dfcac0996.tar.bz2
2009-09-25 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/rtems/pci.h: Change extern inline to static inline.
Diffstat (limited to 'cpukit/include/rtems/pci.h')
-rw-r--r--cpukit/include/rtems/pci.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/include/rtems/pci.h b/cpukit/include/rtems/pci.h
index 6a10633255..58d187dbad 100644
--- a/cpukit/include/rtems/pci.h
+++ b/cpukit/include/rtems/pci.h
@@ -1137,7 +1137,7 @@ typedef struct {
extern pci_config BSP_pci_configuration;
-extern inline int
+static inline int
pci_read_config_byte(
unsigned char bus,
unsigned char slot,
@@ -1149,7 +1149,7 @@ pci_read_config_byte(
bus, slot, function, where, val);
}
-extern inline int
+static inline int
pci_read_config_word(
unsigned char bus,
unsigned char slot,
@@ -1161,7 +1161,7 @@ pci_read_config_word(
bus, slot, function, where, val);
}
-extern inline int
+static inline int
pci_read_config_dword(
unsigned char bus,
unsigned char slot,
@@ -1172,7 +1172,7 @@ pci_read_config_dword(
return BSP_pci_configuration.pci_functions->read_config_dword(bus, slot, function, where, val);
}
-extern inline int
+static inline int
pci_write_config_byte(
unsigned char bus,
unsigned char slot,
@@ -1184,7 +1184,7 @@ pci_write_config_byte(
bus, slot, function, where, val);
}
-extern inline int
+static inline int
pci_write_config_word(
unsigned char bus,
unsigned char slot,
@@ -1196,7 +1196,7 @@ pci_write_config_word(
bus, slot, function, where, val);
}
-extern inline int
+static inline int
pci_write_config_dword(
unsigned char bus,
unsigned char slot,