[PATCH] ppc32 8xx: fix m8xx_ide_init() #ifdef
Be more precise on deciding whether to call m8xx_ide_init() at m8xx_setup.c:platform_init(). Compilation fails if CONFIG_BLK_DEV_IDE is defined but CONFIG_BLK_DEV_MPC8xx_IDE isnt. Signed-off-by: Marcelo Tosatti <marcelo.tosatti@cyclades.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
3515d0161d
commit
566ecb9b25
@@ -423,7 +423,7 @@ platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
|
|||||||
ppc_md.find_end_of_memory = m8xx_find_end_of_memory;
|
ppc_md.find_end_of_memory = m8xx_find_end_of_memory;
|
||||||
ppc_md.setup_io_mappings = m8xx_map_io;
|
ppc_md.setup_io_mappings = m8xx_map_io;
|
||||||
|
|
||||||
#if defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE)
|
#if defined(CONFIG_BLK_DEV_MPC8xx_IDE)
|
||||||
m8xx_ide_init();
|
m8xx_ide_init();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user