diff options
author | Xiubo Li <Li.Xiubo@freescale.com> | 2014-12-11 11:15:26 -0800 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2014-12-11 12:37:42 -0800 |
commit | d0419f400af6f4bbe5c4ee5c97f6fbbdedec6cf3 (patch) | |
tree | 296a1ceeba7808b353c6cbff89645e8aaa52c9d1 /include/configs/sun7i.h | |
parent | 0de15707a71ec64dbc1ead2831457f1550179ea7 (diff) | |
download | talos-obmc-uboot-d0419f400af6f4bbe5c4ee5c97f6fbbdedec6cf3.tar.gz talos-obmc-uboot-d0419f400af6f4bbe5c4ee5c97f6fbbdedec6cf3.zip |
ARM: HYP/non-sec: Fix the ARCH Timer frequency setting for sun7i
Earlier commit 73a1cb27 mistakenly used CONFIG_SYS_TIMER_CLK_FREQ.
It should be CONFIG_TIMER_CLK_FREQ.
Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
[York Sun: This is the difference between two patch versions]
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'include/configs/sun7i.h')
-rw-r--r-- | include/configs/sun7i.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/sun7i.h b/include/configs/sun7i.h index 4426d24e57..ccec50c328 100644 --- a/include/configs/sun7i.h +++ b/include/configs/sun7i.h @@ -25,7 +25,7 @@ #define CONFIG_ARMV7_PSCI 1 #define CONFIG_ARMV7_SECURE_BASE SUNXI_SRAM_B_BASE #define CONFIG_SYS_CLK_FREQ 24000000 -#define CONFIG_SYS_TIMER_CLK_FREQ CONFIG_SYS_CLK_FREQ +#define CONFIG_TIMER_CLK_FREQ CONFIG_SYS_CLK_FREQ /* * Include common sunxi configuration where most the settings are |