mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
davinci: DA830/OMAP-L137 EVM: fix warning with default config
This patch fixes the following warning seen when building with default config: arch/arm/mach-davinci/board-da830-evm.c:371: warning: 'da830_evm_devices' defined but not used Tested on DA830 EVM with and without CONFIG_DA830_UI_NAND enabled. Signed-off-by: Sekhar Nori <nsekhar@ti.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
This commit is contained in:
parent
733975a314
commit
5950b55b04
1 changed files with 2 additions and 9 deletions
|
@ -412,12 +412,6 @@ static struct platform_device da830_evm_nand_device = {
|
|||
};
|
||||
#endif
|
||||
|
||||
static struct platform_device *da830_evm_devices[] __initdata = {
|
||||
#ifdef CONFIG_DA830_UI_NAND
|
||||
&da830_evm_nand_device,
|
||||
#endif
|
||||
};
|
||||
|
||||
/*
|
||||
* UI board NAND/NOR flashes only use 8-bit data bus.
|
||||
*/
|
||||
|
@ -502,10 +496,9 @@ static __init void da830_evm_init(void)
|
|||
pr_warning("da830_evm_init: emif25 mux setup failed: %d\n",
|
||||
ret);
|
||||
|
||||
ret = platform_add_devices(da830_evm_devices,
|
||||
ARRAY_SIZE(da830_evm_devices));
|
||||
ret = platform_device_register(&da830_evm_nand_device);
|
||||
if (ret)
|
||||
pr_warning("da830_evm_init: EVM devices not added\n");
|
||||
pr_warning("da830_evm_init: NAND device not registered.\n");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue