From f2a6ee017ce7213c13dc939bb235d3cb9dcf85b4 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sat, 31 Mar 2007 01:10:35 +0000 Subject: =?UTF-8?q?2007-03-31=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * include/rtems/pci.h: Further stdint.h fixed-size types. --- 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 2c5e3b74e5..fffefe2fbf 100644 --- a/cpukit/include/rtems/pci.h +++ b/cpukit/include/rtems/pci.h @@ -1138,7 +1138,7 @@ pci_read_config_byte( unsigned char slot, unsigned char function, unsigned char where, - unsigned char * val) + uint8_t *val) { return BSP_pci_configuration.pci_functions->read_config_byte( bus, slot, function, where, val); @@ -1150,7 +1150,7 @@ pci_read_config_word( unsigned char slot, unsigned char function, unsigned char where, - unsigned short * val) + uint16_t *val) { return BSP_pci_configuration.pci_functions->read_config_word( bus, slot, function, where, val); @@ -1162,7 +1162,7 @@ pci_read_config_dword( unsigned char slot, unsigned char function, unsigned char where, - unsigned int * val) + uint32_t *val) { return BSP_pci_configuration.pci_functions->read_config_dword(bus, slot, function, where, val); } @@ -1173,7 +1173,7 @@ pci_write_config_byte( unsigned char slot, unsigned char function, unsigned char where, - unsigned char val) + uint8_t val) { return BSP_pci_configuration.pci_functions->write_config_byte( bus, slot, function, where, val); @@ -1185,7 +1185,7 @@ pci_write_config_word( unsigned char slot, unsigned char function, unsigned char where, - unsigned short val) + uint16_t val) { return BSP_pci_configuration.pci_functions->write_config_word( bus, slot, function, where, val); @@ -1197,7 +1197,7 @@ pci_write_config_dword( unsigned char slot, unsigned char function, unsigned char where, - unsigned int val) + uint32_t val) { return BSP_pci_configuration.pci_functions->write_config_dword( bus, slot, function, where, val); -- cgit v1.2.3