summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/io.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-05-28 15:24:19 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-14 07:25:46 +0200
commitdc4879bba4ce91b86b4cfcea0a0f8dd7450e2d00 (patch)
tree9030cac94e8eca6c9582574fcb751b2688e9e086 /cpukit/include/rtems/io.h
parentrtems: Remove deprecated <rtems/system.h> (diff)
downloadrtems-dc4879bba4ce91b86b4cfcea0a0f8dd7450e2d00.tar.bz2
rtems: Remove deprecated rtems_io_lookup_name()
Close #3420.
Diffstat (limited to '')
-rw-r--r--cpukit/include/rtems/io.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/cpukit/include/rtems/io.h b/cpukit/include/rtems/io.h
index 972a0aa431..f4066b647a 100644
--- a/cpukit/include/rtems/io.h
+++ b/cpukit/include/rtems/io.h
@@ -4,7 +4,7 @@
* @brief Classic Input/Output Manager API
*
* This file emulates the old Classic RTEMS IO manager directives
- * which register and lookup names using the in-memory filesystem.
+ * which register names using the in-memory filesystem.
*/
/*
@@ -231,21 +231,6 @@ rtems_status_code rtems_io_control(
/** @} */
-typedef struct {
- const char *device_name;
- size_t device_name_length;
- rtems_device_major_number major;
- rtems_device_minor_number minor;
-} rtems_driver_name_t;
-
-/**
- * @deprecated Use stat() instead.
- */
-rtems_status_code rtems_io_lookup_name(
- const char *name,
- rtems_driver_name_t *device_info
-) RTEMS_DEPRECATED;
-
#ifdef __cplusplus
}
#endif