|
Linux Kernel
3.7.1
|
#include <linux/kernel.h>#include <linux/platform_device.h>#include <linux/gpio.h>#include <linux/module.h>#include <linux/slab.h>#include <linux/interrupt.h>#include <linux/usb.h>#include <linux/workqueue.h>#include <linux/regulator/consumer.h>#include <linux/usb/gadget.h>#include <linux/usb/gpio_vbus.h>#include <linux/usb/otg.h>Go to the source code of this file.
Data Structures | |
| struct | gpio_vbus_data |
Macros | |
| #define | VBUS_IRQ_FLAGS (IRQF_SHARED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING) |
Functions | |
| MODULE_ALIAS ("platform:gpio-vbus") | |
| module_init (gpio_vbus_init) | |
| module_exit (gpio_vbus_exit) | |
| MODULE_DESCRIPTION ("simple GPIO controlled OTG transceiver driver") | |
| MODULE_AUTHOR ("Philipp Zabel") | |
| MODULE_LICENSE ("GPL") | |
| #define VBUS_IRQ_FLAGS (IRQF_SHARED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING) |
Definition at line 55 of file gpio_vbus.c.
| MODULE_ALIAS | ( | "platform:gpio-vbus" | ) |
| MODULE_AUTHOR | ( | "Philipp Zabel" | ) |
| MODULE_DESCRIPTION | ( | "simple GPIO controlled OTG transceiver driver" | ) |
| module_exit | ( | gpio_vbus_exit | ) |
| module_init | ( | gpio_vbus_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
1.8.2