Skip to content

Commit

Permalink
[ARM] pxa: initialise PXA devices before platform init code
Browse files Browse the repository at this point in the history
Initialise PXA devices before platform initialisation, so that
platforms can parent devices to these.

Acked-by: eric miao <ymiao3@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Apr 19, 2008
1 parent c546106 commit 1c104e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-pxa/pxa25x.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,4 +313,4 @@ static int __init pxa25x_init(void)
return ret;
}

subsys_initcall(pxa25x_init);
postcore_initcall(pxa25x_init);
2 changes: 1 addition & 1 deletion arch/arm/mach-pxa/pxa27x.c
Original file line number Diff line number Diff line change
Expand Up @@ -396,4 +396,4 @@ static int __init pxa27x_init(void)
return ret;
}

subsys_initcall(pxa27x_init);
postcore_initcall(pxa27x_init);
2 changes: 1 addition & 1 deletion arch/arm/mach-pxa/pxa3xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -573,4 +573,4 @@ static int __init pxa3xx_init(void)
return ret;
}

subsys_initcall(pxa3xx_init);
postcore_initcall(pxa3xx_init);

0 comments on commit 1c104e0

Please sign in to comment.