diff options
author | Bernhard Walle <bwalle@suse.de> | 2007-05-02 13:27:11 -0400 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2007-05-02 13:27:11 -0400 |
commit | 141f9cfe0a948c8fe26e5669364ee62c03ea42e8 (patch) | |
tree | eda2657ffd64f4545a0dc0065281147715de9328 /arch/x86_64/kernel | |
parent | dd4ecfc2b10d962d70ff59f8994a29aa048700ec (diff) |
[PATCH] x86-64: Fix "Section mismatch" compile warning
Fix "Section mismatch" warnings in arch/x86_64/kernel/time.c
Signed-off-by: Bernhard Walle <bwalle@suse.de>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch/x86_64/kernel')
-rw-r--r-- | arch/x86_64/kernel/time.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86_64/kernel/time.c b/arch/x86_64/kernel/time.c index 91c9066a380d..0652e173813b 100644 --- a/arch/x86_64/kernel/time.c +++ b/arch/x86_64/kernel/time.c | |||
@@ -328,7 +328,7 @@ static unsigned int __init pit_calibrate_tsc(void) | |||
328 | #define PIT_MODE 0x43 | 328 | #define PIT_MODE 0x43 |
329 | #define PIT_CH0 0x40 | 329 | #define PIT_CH0 0x40 |
330 | 330 | ||
331 | static void __init __pit_init(int val, u8 mode) | 331 | static void __pit_init(int val, u8 mode) |
332 | { | 332 | { |
333 | unsigned long flags; | 333 | unsigned long flags; |
334 | 334 | ||
@@ -344,12 +344,12 @@ void __init pit_init(void) | |||
344 | __pit_init(LATCH, 0x34); /* binary, mode 2, LSB/MSB, ch 0 */ | 344 | __pit_init(LATCH, 0x34); /* binary, mode 2, LSB/MSB, ch 0 */ |
345 | } | 345 | } |
346 | 346 | ||
347 | void __init pit_stop_interrupt(void) | 347 | void pit_stop_interrupt(void) |
348 | { | 348 | { |
349 | __pit_init(0, 0x30); /* mode 0 */ | 349 | __pit_init(0, 0x30); /* mode 0 */ |
350 | } | 350 | } |
351 | 351 | ||
352 | void __init stop_timer_interrupt(void) | 352 | void stop_timer_interrupt(void) |
353 | { | 353 | { |
354 | char *name; | 354 | char *name; |
355 | if (hpet_address) { | 355 | if (hpet_address) { |