dect
/
linux-2.6
Archived
13
0
Fork 0

Orion5x: Fix Section mismatch warnings

Wrongly placed __initdata, and missing __init caused these warnings.

Signed-off-by: Andrew Lunn <andrew@lunn.ch>
This commit is contained in:
Andrew Lunn 2012-05-10 15:59:44 +02:00
parent 6ed272f245
commit d2621b82c2
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ static int __init cpu_win_can_remap(const struct orion_addr_map_cfg *cfg,
/*
* Description of the windows needed by the platform code
*/
static struct __initdata orion_addr_map_cfg addr_map_cfg = {
static struct orion_addr_map_cfg addr_map_cfg __initdata = {
.num_wins = 8,
.cpu_win_can_remap = cpu_win_can_remap,
.bridge_virt_base = ORION5X_BRIDGE_VIRT_BASE,

View File

@ -205,7 +205,7 @@ int __init orion5x_find_tclk(void)
return 166666667;
}
static void orion5x_timer_init(void)
static void __init orion5x_timer_init(void)
{
orion5x_tclk = orion5x_find_tclk();