From 607d2725708d785a298c8f7dce58464bcf0c9b32 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 1 Oct 2009 12:20:28 +0000 Subject: Make pci_[read|write]_config* static inline, again. --- cpukit/include/rtems/pci.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cpukit/include') diff --git a/cpukit/include/rtems/pci.h b/cpukit/include/rtems/pci.h index 2cfdc65feb..a786b49596 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, -- cgit v1.2.3