From 458bd343e24cda7169c75f079705979891c9abc1 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 5 Nov 1999 16:44:02 +0000 Subject: This is another pass at making sure that nothing outside the BSP unnecessarily uses any variables defined by the BSP. On this sweep, use of BSP_Configuration and Cpu_table was eliminated. A significant part of this modification was the addition of macros to access fields in the RTEMS configuration structures. This is necessary to strengthen the division between the BSP independent parts of RTEMS and the BSPs themselves. This started after comments and analysis by Ralf Corsepius . --- c/src/lib/libcpu/powerpc/mpc821/clock/clock.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'c/src/lib/libcpu/powerpc/mpc821/clock/clock.c') diff --git a/c/src/lib/libcpu/powerpc/mpc821/clock/clock.c b/c/src/lib/libcpu/powerpc/mpc821/clock/clock.c index ce27c426a9..a41bde3de5 100644 --- a/c/src/lib/libcpu/powerpc/mpc821/clock/clock.c +++ b/c/src/lib/libcpu/powerpc/mpc821/clock/clock.c @@ -42,8 +42,6 @@ #include /* for atexit() */ #include -extern rtems_cpu_table Cpu_table; /* owned by BSP */ - volatile rtems_unsigned32 Clock_driver_ticks; extern volatile m821_t m821; @@ -74,7 +72,7 @@ void Install_clock(rtems_isr_entry clock_isr) Clock_driver_ticks = 0; pit_value = rtems_configuration_get_microseconds_per_tick() / - Cpu_table.clicks_per_usec; + rtems_cpu_configuration_get_clicks_per_usec(); if (pit_value == 0) { pit_value = 0xffff; } else { -- cgit v1.2.3