%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/root/lib/modules/4.4.0-112-generic/build/arch/avr32/mach-at32ap/include/mach/ |
Upload File : |
#ifndef __ASM_AVR32_ARCH_GPIO_H #define __ASM_AVR32_ARCH_GPIO_H #include <linux/compiler.h> #include <asm/irq.h> /* Some GPIO chips can manage IRQs; some can't. The exact numbers can * be changed if needed, but for the moment they're not configurable. */ #define ARCH_NR_GPIOS (NR_GPIO_IRQS + 2 * 32) /* Arch-neutral GPIO API, supporting both "native" and external GPIOs. */ #include <asm-generic/gpio.h> static inline int gpio_get_value(unsigned int gpio) { return __gpio_get_value(gpio); } static inline void gpio_set_value(unsigned int gpio, int value) { __gpio_set_value(gpio, value); } static inline int gpio_cansleep(unsigned int gpio) { return __gpio_cansleep(gpio); } static inline int gpio_to_irq(unsigned int gpio) { if (gpio < NR_GPIO_IRQS) return gpio + GPIO_IRQ_BASE; return -EINVAL; } static inline int irq_to_gpio(unsigned int irq) { return irq - GPIO_IRQ_BASE; } #endif /* __ASM_AVR32_ARCH_GPIO_H */