diff options
author | Ingo Molnar <mingo@elte.hu> | 2012-02-22 07:19:37 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2012-02-22 07:25:16 -0500 |
commit | 10ea9d6f5663c3ed51f91cd037b4b9b147273cbb (patch) | |
tree | 5ceb7d0252f029650b3d0d4d955089be5bc43436 /drivers/clocksource | |
parent | b0e5c77903fd717cc5eb02b7b8f5de3c869efc49 (diff) |
clocksource: scx200_hrt: Fix the build
This commit:
12d6d41276de: clocksource: scx200_hrt: Convert scx200 to use clocksource_register_hz
Breaks the build on x86-32:
drivers/clocksource/scx200_hrt.c: In function ‘init_hrt_clocksource’:
drivers/clocksource/scx200_hrt.c:95:0: error: unterminated argument list invoking macro "pr_info"
drivers/clocksource/scx200_hrt.c:84:2: error: ‘pr_info’ undeclared (first use in this function)
It could not possibly have been build tested, because it had this mismerge:
pr_info("enabling scx200 high-res timer (%s MHz +%d ppm)\n",
printk(KERN_INFO "enabling scx200 high-res timer (%s MHz +%d ppm)\n",
mhz27 ? "27":"1", ppm);
Cc: Jim Cromie <jim.cromie@gmail.com>
Cc: John Stultz <john.stultz@linaro.org>
Link: http://lkml.kernel.org/n/tip-jceb26fns5w7tv8edlivhxpa@git.kernel.org
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r-- | drivers/clocksource/scx200_hrt.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/clocksource/scx200_hrt.c b/drivers/clocksource/scx200_hrt.c index 60db8b1492f1..64f9e8294434 100644 --- a/drivers/clocksource/scx200_hrt.c +++ b/drivers/clocksource/scx200_hrt.c | |||
@@ -81,9 +81,7 @@ static int __init init_hrt_clocksource(void) | |||
81 | if (mhz27) | 81 | if (mhz27) |
82 | freq *= 27; | 82 | freq *= 27; |
83 | 83 | ||
84 | pr_info("enabling scx200 high-res timer (%s MHz +%d ppm)\n", | 84 | pr_info("enabling scx200 high-res timer (%s MHz +%d ppm)\n", mhz27 ? "27":"1", ppm); |
85 | printk(KERN_INFO "enabling scx200 high-res timer (%s MHz +%d ppm)\n", | ||
86 | mhz27 ? "27":"1", ppm); | ||
87 | 85 | ||
88 | return clocksource_register_hz(&cs_hrt, freq); | 86 | return clocksource_register_hz(&cs_hrt, freq); |
89 | } | 87 | } |