diff options
Diffstat (limited to 'arch/arm/mach-omap1/mcbsp.c')
| -rw-r--r-- | arch/arm/mach-omap1/mcbsp.c | 19 | 
1 files changed, 5 insertions, 14 deletions
diff --git a/arch/arm/mach-omap1/mcbsp.c b/arch/arm/mach-omap1/mcbsp.c index 91f9abbd325..adf00975b9b 100644 --- a/arch/arm/mach-omap1/mcbsp.c +++ b/arch/arm/mach-omap1/mcbsp.c @@ -19,12 +19,15 @@  #include <linux/platform_device.h>  #include <linux/slab.h> -#include <mach/irqs.h>  #include <plat/dma.h>  #include <plat/mux.h>  #include <plat/cpu.h>  #include <plat/mcbsp.h> +#include <mach/irqs.h> + +#include "iomap.h" +  #define DPS_RSTCT2_PER_EN	(1 << 0)  #define DSP_RSTCT2_WD_PER_EN	(1 << 1) @@ -420,18 +423,6 @@ static int __init omap1_mcbsp_init(void)  		return -ENODEV;  	if (cpu_is_omap7xx()) -		omap_mcbsp_count = OMAP7XX_MCBSP_COUNT; -	else if (cpu_is_omap15xx()) -		omap_mcbsp_count = OMAP15XX_MCBSP_COUNT; -	else if (cpu_is_omap16xx()) -		omap_mcbsp_count = OMAP16XX_MCBSP_COUNT; - -	mcbsp_ptr = kzalloc(omap_mcbsp_count * sizeof(struct omap_mcbsp *), -								GFP_KERNEL); -	if (!mcbsp_ptr) -		return -ENOMEM; - -	if (cpu_is_omap7xx())  		omap_mcbsp_register_board_cfg(omap7xx_mcbsp_res_0,  					OMAP7XX_MCBSP_RES_SZ,  					omap7xx_mcbsp_pdata, @@ -449,7 +440,7 @@ static int __init omap1_mcbsp_init(void)  					omap16xx_mcbsp_pdata,  					OMAP16XX_MCBSP_COUNT); -	return omap_mcbsp_init(); +	return 0;  }  arch_initcall(omap1_mcbsp_init);  |