Lines Matching defs:gpio
9 #include <linux/gpio.h>
111 unsigned gpio,
116 res = gpio_request_one(gpio + 2, GPIOF_OUT_INIT_HIGH,
121 gpio_export(gpio, 0);
126 static void __init omap3_sbc_t3x_usb_hub_init(int gpio, char *hub_name)
128 int err = gpio_request_one(gpio, GPIOF_OUT_INIT_LOW, hub_name);
131 pr_err("SBC-T3x: %s reset gpio request failed: %d\n",
136 gpio_export(gpio, 0);
139 gpio_set_value(gpio, 1);
199 static struct gpio cm_t3517_wlan_gpios[] __initdata = {
213 gpio_export(cm_t3517_wlan_gpios[0].gpio, 0);
214 gpio_export(cm_t3517_wlan_gpios[1].gpio, 0);
217 gpio_set_value(cm_t3517_wlan_gpios[1].gpio, 0);
442 if (strcmp("twl4030-gpio", dev_name(dev)))