From dad34779e94a53240ca68660b1c7ebee9fa33280 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 5 Sep 2008 22:06:54 +0000 Subject: 2008-09-05 Joel Sherrill * mpc5xx/clock/clock.c, mpc6xx/clock/c_clock.c, mpc8260/clock/clock.c, mpc8xx/clock/clock.c, ppc403/clock/clock.c, ppc403/clock/clock_4xx.c: 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. --- c/src/lib/libcpu/powerpc/ppc403/clock/clock_4xx.c | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'c/src/lib/libcpu/powerpc/ppc403/clock/clock_4xx.c') diff --git a/c/src/lib/libcpu/powerpc/ppc403/clock/clock_4xx.c b/c/src/lib/libcpu/powerpc/ppc403/clock/clock_4xx.c index 890e75509d..1a6d91cafb 100644 --- a/c/src/lib/libcpu/powerpc/ppc403/clock/clock_4xx.c +++ b/c/src/lib/libcpu/powerpc/ppc403/clock/clock_4xx.c @@ -226,26 +226,3 @@ rtems_device_driver Clock_initialize( return RTEMS_SUCCESSFUL; } - - -rtems_device_driver Clock_control( - rtems_device_major_number major, - rtems_device_minor_number minor, - void *pargp -) -{ - rtems_libio_ioctl_args_t* args = pargp; - - if (args!=NULL) { - /* - * This is hokey, but until we get a defined interface - * to do this, it will just be this simple... - */ - - if (args->command == rtems_build_name('I', 'S', 'R', ' ')) - Clock_isr(NULL); - else if (args->command == rtems_build_name('N', 'E', 'W', ' ')) - ReInstall_clock(args->buffer); - } - return RTEMS_SUCCESSFUL; -} -- cgit v1.2.3