summaryrefslogtreecommitdiffstats
path: root/cpukit/include
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-03-31 01:10:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-03-31 01:10:35 +0000
commitf2a6ee017ce7213c13dc939bb235d3cb9dcf85b4 (patch)
treea3efe043cecd4d5fa0f779d26898705ddf1e557b /cpukit/include
parent2007-03-30 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f2a6ee017ce7213c13dc939bb235d3cb9dcf85b4.tar.bz2
2007-03-31 Ralf Corsépius <ralf.corsepius@rtems.org>
* include/rtems/pci.h: Further stdint.h fixed-size types.
Diffstat (limited to 'cpukit/include')
-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 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);