summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/include/rtems/io.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-05-28 15:51:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-05-28 15:51:01 +0000
commitff3f8c85c3f2098af3ffc8330b3a6cf636035edf (patch)
tree2e766ce877f4653a8146538493f464b8f622dea4 /cpukit/sapi/include/rtems/io.h
parent2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-ff3f8c85c3f2098af3ffc8330b3a6cf636035edf.tar.bz2
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* libmisc/Makefile.am, libmisc/monitor/mon-object.c, libmisc/monitor/monitor.h, sapi/include/confdefs.h, sapi/include/rtems/config.h, sapi/include/rtems/io.h, sapi/src/exinit.c, sapi/src/io.c: Eliminate maximum_drivers configuration parameter since it was used to configure a no longer used feature. Device names are now part of the filesystem not in a table. This also eliminated the variables _IO_Number_of_devices and _IO_Driver_name_table from RTEMS as well as the memory allocation used to populate _IO_Driver_name_table. * libmisc/monitor/mon-dname.c: Removed.
Diffstat (limited to '')
-rw-r--r--cpukit/sapi/include/rtems/io.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/cpukit/sapi/include/rtems/io.h b/cpukit/sapi/include/rtems/io.h
index 66d6360dd0..ace50f0459 100644
--- a/cpukit/sapi/include/rtems/io.h
+++ b/cpukit/sapi/include/rtems/io.h
@@ -90,8 +90,6 @@ typedef struct {
SAPI_EXTERN uint32_t _IO_Number_of_drivers;
SAPI_EXTERN rtems_driver_address_table *_IO_Driver_address_table;
-SAPI_EXTERN uint32_t _IO_Number_of_devices;
-SAPI_EXTERN rtems_driver_name_t *_IO_Driver_name_table;
/*
* _IO_Manager_initialization
@@ -104,8 +102,7 @@ SAPI_EXTERN rtems_driver_name_t *_IO_Driver_name_table;
void _IO_Manager_initialization(
rtems_driver_address_table *driver_table,
uint32_t drivers_in_table,
- uint32_t number_of_drivers,
- uint32_t number_of_devices
+ uint32_t number_of_drivers
);
/*