diff options
| author | 2014-11-20 15:02:59 +0200 | |
|---|---|---|
| committer | 2015-03-31 21:26:36 +0300 | |
| commit | ab7b2ffcf576a49b51c240dcd68ca4b7cd60b84d (patch) | |
| tree | d4d34e048713a8f7029ec525118469b7a79d35d8 /arch/arm/mach-omap2/prm33xx.c | |
| parent | ARM: OMAP2+: control: determine control module base address from DT (diff) | |
| download | linux-dev-ab7b2ffcf576a49b51c240dcd68ca4b7cd60b84d.tar.xz linux-dev-ab7b2ffcf576a49b51c240dcd68ca4b7cd60b84d.zip | |
ARM: OMAP2+: PRM: move SoC specific init calls within a generic API
This gets rid of need for some exported driver APIs, and simplifies the
initialization of the PRM driver. Done in preparation to make PRM a
separate driver. The init data is now also passed to the SoC specific
implementations, allowing future expansion to add feature flags etc.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/prm33xx.c')
| -rw-r--r-- | arch/arm/mach-omap2/prm33xx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c index 1e052aaf92cd..dcb5001d77da 100644 --- a/arch/arm/mach-omap2/prm33xx.c +++ b/arch/arm/mach-omap2/prm33xx.c @@ -378,9 +378,8 @@ static struct prm_ll_data am33xx_prm_ll_data = { .reset_system = am33xx_prm_global_warm_sw_reset, }; -int __init am33xx_prm_init(void) +int __init am33xx_prm_init(const struct omap_prcm_init_data *data) { - omap2_prm_base_init(); return prm_register(&am33xx_prm_ll_data); } |
