x86: fix basic_atom's SYS_CLOCK_HW_CYCLES_PER_SEC
The Kconfig option SYS_CLOCK_HW_CYCLES_PER_SEC for the basic_atom platform configuration was mistakenly left at 900000000. That value was necessary when basic_atom used the LOAPIC_TIMER, but as it now uses the HPET, it must use 25000000. Change-Id: If2735895edfe2f67905bf57e4008efbee50084f7 Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
This commit is contained in:
parent
8729b3c802
commit
f5f78432ed
2 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ CONFIG_MICROKERNEL=y
|
|||
# General Kernel Options
|
||||
#
|
||||
CONFIG_SYS_CLOCK_TICKS_PER_SEC=100
|
||||
CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=900000000
|
||||
CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=25000000
|
||||
CONFIG_SYS_CLOCK_EXISTS=y
|
||||
# CONFIG_INIT_STACKS is not set
|
||||
# CONFIG_XIP is not set
|
||||
|
|
|
@ -11,7 +11,7 @@ CONFIG_NANOKERNEL=y
|
|||
# General Kernel Options
|
||||
#
|
||||
CONFIG_SYS_CLOCK_TICKS_PER_SEC=100
|
||||
CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=900000000
|
||||
CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=25000000
|
||||
CONFIG_SYS_CLOCK_EXISTS=y
|
||||
# CONFIG_INIT_STACKS is not set
|
||||
# CONFIG_XIP is not set
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue