summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-05 22:06:31 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-05 22:06:31 +0000
commit16bd644c3d6e904452ab4d2d9c586d7b18b4f492 (patch)
treedf5a859b39aefa24160604380b46226e9b767cbb /cpukit
parent2008-09-05 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-16bd644c3d6e904452ab4d2d9c586d7b18b4f492.tar.bz2
2008-09-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* libcsupport/include/clockdrv.h: The Shared Memory Driver no longer requires the special IOCTL in Clock_control. This was a hack which has existed since before the Classic API Timer Manager was implemented. All implementations of and references to Clock_control were removed.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog8
-rw-r--r--cpukit/libcsupport/include/clockdrv.h8
2 files changed, 9 insertions, 7 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 55ecd92014..a4f054223a 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,11 @@
+2008-09-05 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * libcsupport/include/clockdrv.h: The Shared Memory Driver no longer
+ requires the special IOCTL in Clock_control. This was a hack which
+ has existed since before the Classic API Timer Manager was
+ implemented. All implementations of and references to Clock_control
+ were removed.
+
2008-09-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/src/corebarrier.c, score/src/corebarrierrelease.c,
diff --git a/cpukit/libcsupport/include/clockdrv.h b/cpukit/libcsupport/include/clockdrv.h
index 685b33aad5..d7cacab806 100644
--- a/cpukit/libcsupport/include/clockdrv.h
+++ b/cpukit/libcsupport/include/clockdrv.h
@@ -32,7 +32,7 @@ extern rtems_device_minor_number rtems_clock_minor;
/* default clock driver entry */
#define CLOCK_DRIVER_TABLE_ENTRY \
- { Clock_initialize, NULL, NULL, NULL, NULL, Clock_control }
+ { Clock_initialize, NULL, NULL, NULL, NULL, NULL }
rtems_device_driver Clock_initialize(
rtems_device_major_number,
@@ -40,12 +40,6 @@ rtems_device_driver Clock_initialize(
void *
);
-rtems_device_driver Clock_control(
- rtems_device_major_number major,
- rtems_device_minor_number minor,
- void *pargp
-);
-
void Clock_exit(void);
#ifdef __cplusplus