diff options
| author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2012-01-26 12:38:31 +0200 | 
|---|---|---|
| committer | Liam Girdwood <lrg@ti.com> | 2012-03-12 13:34:19 +0000 | 
| commit | 0210dc4eafcfd1b38ac178ebf63627f359d6371d (patch) | |
| tree | 1106068c62c7c79e5606193eff1224135a557192 /arch/arm/mach-omap2/mcbsp.c | |
| parent | 0324e02a077de6bffff566fa43fd7b46f4b3ebd8 (diff) | |
| download | olio-linux-3.10-0210dc4eafcfd1b38ac178ebf63627f359d6371d.tar.xz olio-linux-3.10-0210dc4eafcfd1b38ac178ebf63627f359d6371d.zip  | |
ARM: OMAP: mcbsp: Convert core driver to proper platform driver
Convert the plat-omap/mcbsp.c driver to be proper platform driver.
Remove the omap_mcbsp_init function call which was called from
mach-omap1/2/mcbsp.c to register the platform driver for the just
created platform device in the same function.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Tested-by: Grazvydas Ignotas <notasas@gmail.com>
Tested-by: Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Signed-off-by: Liam Girdwood <lrg@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/mcbsp.c')
| -rw-r--r-- | arch/arm/mach-omap2/mcbsp.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/mcbsp.c b/arch/arm/mach-omap2/mcbsp.c index fb4bcf81a18..b36d443a6fd 100644 --- a/arch/arm/mach-omap2/mcbsp.c +++ b/arch/arm/mach-omap2/mcbsp.c @@ -193,6 +193,6 @@ static int __init omap2_mcbsp_init(void)  	if (!mcbsp_ptr)  		return -ENOMEM; -	return omap_mcbsp_init(); +	return 0;  }  arch_initcall(omap2_mcbsp_init);  |