Linux Kernel
3.7.1
|
#include <driver.h>
Data Fields | |
struct device * | dev |
struct regulator_init_data * | init_data |
void * | driver_data |
struct device_node * | of_node |
struct regmap * | regmap |
int | ena_gpio |
unsigned int | ena_gpio_invert:1 |
unsigned int | ena_gpio_flags |
struct regulator_config - Dynamic regulator descriptor
Each regulator registered with the core is described with a structure of this type and a struct regulator_desc. This structure contains the runtime variable parts of the regulator description.
: struct device for the regulator : platform provided init data, passed through by driver : private regulator data : OpenFirmware node to parse for device tree bindings (may be NULL). : regmap to use for core regmap helpers if dev_get_regulator() is insufficient. : GPIO controlling regulator enable. : Sense for GPIO enable control. : Flags to use when calling gpio_request_one()
struct regulator_init_data* init_data |
struct device_node* of_node |