b3a076dd02
Instead of manually create LED class device, we will use "leds-gpio" driver for LED control. Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Olof Johansson <olof@lixom.net>
16 lines
347 B
C
16 lines
347 B
C
/*
|
|
* linux/arch/arm/mach-clps711x/common.h
|
|
*
|
|
* Common bits.
|
|
*/
|
|
|
|
#define CLPS711X_NR_GPIO (4 * 8 + 3)
|
|
#define CLPS711X_GPIO(prt, bit) ((prt) * 8 + (bit))
|
|
|
|
struct sys_timer;
|
|
|
|
extern void clps711x_map_io(void);
|
|
extern void clps711x_init_irq(void);
|
|
extern struct sys_timer clps711x_timer;
|
|
extern void clps711x_restart(char mode, const char *cmd);
|