Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux...
[deliverable/linux.git] / arch / mips / include / asm / mach-bcm63xx / bcm63xx_gpio.h
1 #ifndef BCM63XX_GPIO_H
2 #define BCM63XX_GPIO_H
3
4 #include <linux/init.h>
5
6 int __init bcm63xx_gpio_init(void);
7
8 static inline unsigned long bcm63xx_gpio_count(void)
9 {
10 switch (bcm63xx_get_cpu_id()) {
11 case BCM6358_CPU_ID:
12 return 40;
13 case BCM6348_CPU_ID:
14 default:
15 return 37;
16 }
17 }
18
19 #define GPIO_DIR_OUT 0x0
20 #define GPIO_DIR_IN 0x1
21
22 #endif /* !BCM63XX_GPIO_H */
This page took 0.083143 seconds and 5 git commands to generate.