diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2008-08-29 07:55:51 +0400 |
---|---|---|
committer | Nicolas Pitre <nico@cam.org> | 2008-09-26 00:26:44 +0400 |
commit | ebe35aff883496c07248df82c8576c3b6e84bbbe (patch) | |
tree | 89120d403604b79e894c0e5683c9fb335d2c3460 /arch/arm/mach-orion5x/tsx09-common.c | |
parent | 1f8081f539a80c3d36a17ecd094d104eae60c01c (diff) | |
download | linux-ebe35aff883496c07248df82c8576c3b6e84bbbe.tar.xz |
[ARM] Orion: prepare for runtime-determined timer tick rate
Currently, orion5x uses a hardcoded timer tick rate of 166 MHz, but
the actual timer tick rate varies between different members of the SoC
family (and can vary based on strap pin settings).
This patch prepares for runtime determination of the timer tick rate.
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Diffstat (limited to 'arch/arm/mach-orion5x/tsx09-common.c')
-rw-r--r-- | arch/arm/mach-orion5x/tsx09-common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-orion5x/tsx09-common.c b/arch/arm/mach-orion5x/tsx09-common.c index 83feac3147a6..5128da1101bf 100644 --- a/arch/arm/mach-orion5x/tsx09-common.c +++ b/arch/arm/mach-orion5x/tsx09-common.c @@ -16,6 +16,7 @@ #include <linux/timex.h> #include <linux/serial_reg.h> #include "tsx09-common.h" +#include "common.h" /***************************************************************************** * QNAP TS-x09 specific power off method via UART1-attached PIC @@ -26,7 +27,7 @@ void qnap_tsx09_power_off(void) { /* 19200 baud divisor */ - const unsigned divisor = ((ORION5X_TCLK + (8 * 19200)) / (16 * 19200)); + const unsigned divisor = ((orion5x_tclk + (8 * 19200)) / (16 * 19200)); pr_info("%s: triggering power-off...\n", __func__); |