~ubuntu-branches/ubuntu/saucy/linux-ti-omap4/saucy-proposed

« back to all changes in this revision

Viewing changes to include/linux/regulator/fixed.h

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati, Stefan Bader, Upstream Kernel Changes
  • Date: 2012-08-15 17:17:43 UTC
  • Revision ID: package-import@ubuntu.com-20120815171743-h5wnuf51xe7pvdid
Tags: 3.5.0-207.13
[ Paolo Pisati ]

* Start new release

[ Stefan Bader ]

* (config) Enable getabis to use local package copies

[ Upstream Kernel Changes ]

* fixup: gargabe collect iva_seq[0|1] init
* [Config] enable all SND_OMAP_SOC_*s
* fixup: cm2xxx_3xxx.o is needed for omap2_cm_read|write_reg
* fixup: add some snd_soc_dai* helper functions
* fixup: s/snd_soc_dpcm_params/snd_soc_dpcm/g
* fixup: typo, no_host_mode and useless SDP4430 init
* fixup: enable again aess hwmod

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 * @gpio:               GPIO to use for enable control
27
27
 *                      set to -EINVAL if not used
28
28
 * @startup_delay:      Start-up time in microseconds
 
29
 * @gpio_is_open_drain: Gpio pin is open drain or normal type.
 
30
 *                      If it is open drain type then HIGH will be set
 
31
 *                      through PULL-UP with setting gpio as input
 
32
 *                      and low will be set as gpio-output with driven
 
33
 *                      to low. For non-open-drain case, the gpio will
 
34
 *                      will be in output and drive to low/high accordingly.
29
35
 * @enable_high:        Polarity of enable GPIO
30
36
 *                      1 = Active high, 0 = Active low
31
37
 * @enabled_at_boot:    Whether regulator has been enabled at
43
49
        int microvolts;
44
50
        int gpio;
45
51
        unsigned startup_delay;
 
52
        unsigned gpio_is_open_drain:1;
46
53
        unsigned enable_high:1;
47
54
        unsigned enabled_at_boot:1;
48
55
        struct regulator_init_data *init_data;