mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 03:51:48 +00:00
[ARM] 5305/1: ARM: OMAP: Fix compile of McBSP by removing unnecessary check
Recent McBSP patches changed to allocating devices dynamically and the check for OMAP_MAX_MCBSP_COUNT became unnecessary. The check for OMAP_MAX_MCBSP_COUNT should have been removed with the earlier McBSP patches in devices.c but was accidentally left out. Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
a468b6484f
commit
a5a5b8c527
@ -159,13 +159,6 @@ void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config,
|
||||
{
|
||||
int i;
|
||||
|
||||
if (size > OMAP_MAX_MCBSP_COUNT) {
|
||||
printk(KERN_WARNING "Registered too many McBSPs platform_data."
|
||||
" Using maximum (%d) available.\n",
|
||||
OMAP_MAX_MCBSP_COUNT);
|
||||
size = OMAP_MAX_MCBSP_COUNT;
|
||||
}
|
||||
|
||||
omap_mcbsp_devices = kzalloc(size * sizeof(struct platform_device *),
|
||||
GFP_KERNEL);
|
||||
if (!omap_mcbsp_devices) {
|
||||
|
Loading…
Reference in New Issue
Block a user