Skip to content

Commit

Permalink
sh: section mismatch fixes for system timer.
Browse files Browse the repository at this point in the history
Fix up a couple of section mismatch warnings regarding sys_timer.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Paul Mundt committed May 23, 2007
1 parent cdb7532 commit ddd43b0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions arch/sh/kernel/timers/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <linux/string.h>
#include <asm/timer.h>

static struct sys_timer *sys_timers[] __initdata = {
static struct sys_timer *sys_timers[] = {
#ifdef CONFIG_SH_TMU
&tmu_timer,
#endif
Expand All @@ -26,7 +26,7 @@ static struct sys_timer *sys_timers[] __initdata = {
NULL,
};

static char timer_override[10] __initdata;
static char timer_override[10];
static int __init timer_setup(char *str)
{
if (str)
Expand All @@ -53,4 +53,3 @@ struct sys_timer *get_sys_timer(void)

return NULL;
}

0 comments on commit ddd43b0

Please sign in to comment.