????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.227.49.178 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/3.13.0-35-generic/build/include/linux/mfd/abx500/ |
Upload File : |
/* * Copyright ST-Ericsson 2010. * * Author: Bibek Basu <bibek.basu@stericsson.com> * Licensed under GPLv2. */ #ifndef _AB8500_GPIO_H #define _AB8500_GPIO_H /* * Platform data to register a block: only the initial gpio/irq number. * Array sizes are large enough to contain all AB8500 and AB9540 GPIO * registers. */ struct abx500_gpio_platform_data { int gpio_base; }; enum abx500_gpio_pull_updown { ABX500_GPIO_PULL_DOWN = 0x0, ABX500_GPIO_PULL_NONE = 0x1, ABX500_GPIO_PULL_UP = 0x3, }; enum abx500_gpio_vinsel { ABX500_GPIO_VINSEL_VBAT = 0x0, ABX500_GPIO_VINSEL_VIN_1V8 = 0x1, ABX500_GPIO_VINSEL_VDD_BIF = 0x2, }; #endif /* _AB8500_GPIO_H */