forked from Minki/linux
3e475f579e
Include linux/init.h for __init to fix this error: CC [M] drivers/net/wireless/wl12xx/boot.o In file included from arch/arm/mach-kirkwood/include/mach/gpio.h:13, from arch/arm/include/asm/gpio.h:5, from include/linux/gpio.h:7, from drivers/net/wireless/wl12xx/boot.c:24: arch/arm/plat-orion/include/plat/gpio.h:32: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘orion_gpio_init’ make[6]: *** [drivers/net/wireless/wl12xx/boot.o] Error 1 make[5]: *** [drivers/net/wireless/wl12xx] Error 2 Signed-off-by: Martin Michlmayr <tbm@cyrius.com> Signed-off-by: Nicolas Pitre <nico@marvell.com>
44 lines
958 B
C
44 lines
958 B
C
/*
|
|
* arch/arm/plat-orion/include/plat/gpio.h
|
|
*
|
|
* Marvell Orion SoC GPIO handling.
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public
|
|
* License version 2. This program is licensed "as is" without any
|
|
* warranty of any kind, whether express or implied.
|
|
*/
|
|
|
|
#ifndef __PLAT_GPIO_H
|
|
#define __PLAT_GPIO_H
|
|
|
|
#include <linux/init.h>
|
|
|
|
/*
|
|
* GENERIC_GPIO primitives.
|
|
*/
|
|
#define gpio_get_value __gpio_get_value
|
|
#define gpio_set_value __gpio_set_value
|
|
#define gpio_cansleep __gpio_cansleep
|
|
|
|
/*
|
|
* Orion-specific GPIO API extensions.
|
|
*/
|
|
void orion_gpio_set_unused(unsigned pin);
|
|
void orion_gpio_set_blink(unsigned pin, int blink);
|
|
|
|
#define GPIO_INPUT_OK (1 << 0)
|
|
#define GPIO_OUTPUT_OK (1 << 1)
|
|
void orion_gpio_set_valid(unsigned pin, int mode);
|
|
|
|
/* Initialize gpiolib. */
|
|
void __init orion_gpio_init(void);
|
|
|
|
/*
|
|
* GPIO interrupt handling.
|
|
*/
|
|
extern struct irq_chip orion_gpio_irq_chip;
|
|
void orion_gpio_irq_handler(int irqoff);
|
|
|
|
|
|
#endif
|