From 1b0c122b5b8b3c4a9ee12f5be1620b00f2da9d9a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 28 Sep 2009 21:00:47 +0000 Subject: [PATCH] 2009-09-28 Joel Sherrill * include/rtems/pci.h: Revert extern inline patch. --- cpukit/ChangeLog | 4 ++++ cpukit/include/rtems/pci.h | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index a7cd1a0510..0ed4c0872b 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2009-09-28 Joel Sherrill + + * include/rtems/pci.h: Revert extern inline patch. + 2009-09-26 Joel Sherrill * libmisc/capture/capture.c, posix/src/pthread.c, rtems/src/tasks.c, diff --git a/cpukit/include/rtems/pci.h b/cpukit/include/rtems/pci.h index 58d187dbad..6a10633255 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; -static inline int +extern 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); } -static inline int +extern 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); } -static inline int +extern 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); } -static inline int +extern 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); } -static inline int +extern 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); } -static inline int +extern inline int pci_write_config_dword( unsigned char bus, unsigned char slot,