]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/amba/pl061.h
Merge branches 'doc', 'multitouch', 'upstream' and 'upstream-fixes' into for-linus
[mirror_ubuntu-zesty-kernel.git] / include / linux / amba / pl061.h
CommitLineData
367d6acc
VK
1#include <linux/types.h>
2
1e9c2859
BS
3/* platform data for the PL061 GPIO driver */
4
5struct pl061_platform_data {
6 /* number of the first GPIO */
7 unsigned gpio_base;
8
9 /* number of the first IRQ.
10 * If the IRQ functionality in not desired this must be set to
11 * (unsigned) -1.
12 */
13 unsigned irq_base;
14
15 u8 directions; /* startup directions, 1: out, 0: in */
16 u8 values; /* startup values */
17};