Fix LOAPIC timer comments

Fixes a copy-paste error that inadvertently had the LOAPIC timer being
referred to as the PIT.

Change-Id: I4760d150cd6feb76b7d7384845898c6276bace83
Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
This commit is contained in:
Peter Mitsis 2015-08-05 15:03:22 -04:00 committed by Anas Nashif
commit be211ba91c

View file

@ -534,7 +534,7 @@ void _timer_idle_exit(void)
* *
* @brief Initialize and enable the system clock * @brief Initialize and enable the system clock
* *
* This routine is used to program the PIT to deliver interrupts at the * This routine is used to program the timer to deliver interrupts at the
* rate specified via the 'sys_clock_us_per_tick' global variable. * rate specified via the 'sys_clock_us_per_tick' global variable.
* *
* @return 0 * @return 0
@ -544,7 +544,7 @@ int _sys_clock_driver_init(struct device *device)
{ {
ARG_UNUSED(device); ARG_UNUSED(device);
/* determine the PIT counter value (in timer clock cycles/system tick) /* determine the timer counter value (in timer clock cycles/system tick)
*/ */
counterLoadVal = sys_clock_hw_cycles_per_tick - 1; counterLoadVal = sys_clock_hw_cycles_per_tick - 1;