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.8-rc3 22 lines 596 B view raw
1/* 2 * Copyright (C) 2007-2012 ST-Ericsson AB 3 * License terms: GNU General Public License (GPL) version 2 4 * GPIO block resgister definitions and inline macros for 5 * U300 GPIO COH 901 335 or COH 901 571/3 6 * Author: Linus Walleij <linus.walleij@stericsson.com> 7 */ 8 9#ifndef __MACH_U300_GPIO_U300_H 10#define __MACH_U300_GPIO_U300_H 11 12/** 13 * struct u300_gpio_platform - U300 GPIO platform data 14 * @ports: number of GPIO block ports 15 * @gpio_base: first GPIO number for this block (use a free range) 16 */ 17struct u300_gpio_platform { 18 u8 ports; 19 int gpio_base; 20}; 21 22#endif /* __MACH_U300_GPIO_U300_H */