058b96d445
This patch adds missing include of linux/types.h to fix below build error. CC arch/arm/mach-mv78xx0/mpp.o In file included from arch/arm/mach-mv78xx0/include/mach/gpio.h:9, from /home/axel/repos/git/linux-2.6/arch/arm/include/asm/gpio.h:5, from include/linux/gpio.h:18, from arch/arm/mach-mv78xx0/mpp.c:10: arch/arm/plat-orion/include/plat/gpio.h:28: error: expected declaration specifiers or '...' before 'u32' make[1]: *** [arch/arm/mach-mv78xx0/mpp.o] Error 1 make: *** [arch/arm/mach-mv78xx0] Error 2 Signed-off-by: Axel Lin <axel.lin@gmail.com> Reviewed-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
38 lines
859 B
C
38 lines
859 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>
|
|
#include <linux/types.h>
|
|
|
|
/*
|
|
* 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(int gpio_base, int ngpio,
|
|
u32 base, int mask_offset, int secondary_irq_base);
|
|
|
|
/*
|
|
* GPIO interrupt handling.
|
|
*/
|
|
void orion_gpio_irq_handler(int irqoff);
|
|
|
|
|
|
#endif
|