forked from Minki/linux
61b3875382
The symbols from cpu-8815.c were being broadcast across the entire kernel but are only really used locally in mach-nomadik so let's localize them. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
20 lines
333 B
C
20 lines
333 B
C
|
|
/*
|
|
* These symbols are needed for board-specific files to call their
|
|
* own cpu-specific files
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_SETUP_H
|
|
#define __ASM_ARCH_SETUP_H
|
|
|
|
#include <asm/mach/time.h>
|
|
#include <linux/init.h>
|
|
|
|
#ifdef CONFIG_NOMADIK_8815
|
|
|
|
extern void nmdk_timer_init(void);
|
|
|
|
#endif /* NOMADIK_8815 */
|
|
|
|
#endif /* __ASM_ARCH_SETUP_H */
|