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 v2.6.32-rc5 15 lines 363 B view raw
1/* platform data for the PL061 GPIO driver */ 2 3struct pl061_platform_data { 4 /* number of the first GPIO */ 5 unsigned gpio_base; 6 7 /* number of the first IRQ. 8 * If the IRQ functionality in not desired this must be set to 9 * (unsigned) -1. 10 */ 11 unsigned irq_base; 12 13 u8 directions; /* startup directions, 1: out, 0: in */ 14 u8 values; /* startup values */ 15};