Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.3-rc3 21 lines 362 B view raw
1/* 2 * Copyright ST-Ericsson 2010. 3 * 4 * Author: Bibek Basu <bibek.basu@stericsson.com> 5 * Licensed under GPLv2. 6 */ 7 8#ifndef _AB8500_GPIO_H 9#define _AB8500_GPIO_H 10 11/* 12 * Platform data to register a block: only the initial gpio/irq number. 13 */ 14 15struct ab8500_gpio_platform_data { 16 int gpio_base; 17 u32 irq_base; 18 u8 config_reg[7]; 19}; 20 21#endif /* _AB8500_GPIO_H */