diff options
author | Chanwoo Choi <cw00.choi@samsung.com> | 2013-08-31 00:16:49 -0400 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2013-09-26 20:37:00 -0400 |
commit | a75e1c73a46eed0332d036e371f714e76d167c07 (patch) | |
tree | e910c19802ead91ec7dc26f1e8d6f63bb7e20faf /include/linux/extcon | |
parent | a33411b26e43d67d361298a822ecfd76a177183f (diff) |
extcon: Fix indentation coding style to improve readability
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Myungjoo Ham <myungjoo.ham@samsung.com>
Diffstat (limited to 'include/linux/extcon')
-rw-r--r-- | include/linux/extcon/extcon-adc-jack.h | 42 | ||||
-rw-r--r-- | include/linux/extcon/extcon-gpio.h | 16 |
2 files changed, 29 insertions, 29 deletions
diff --git a/include/linux/extcon/extcon-adc-jack.h b/include/linux/extcon/extcon-adc-jack.h index 20e9eef25d4c..9ca958c4e94c 100644 --- a/include/linux/extcon/extcon-adc-jack.h +++ b/include/linux/extcon/extcon-adc-jack.h | |||
@@ -20,10 +20,10 @@ | |||
20 | 20 | ||
21 | /** | 21 | /** |
22 | * struct adc_jack_cond - condition to use an extcon state | 22 | * struct adc_jack_cond - condition to use an extcon state |
23 | * @state - the corresponding extcon state (if 0, this struct denotes | 23 | * @state: the corresponding extcon state (if 0, this struct |
24 | * the last adc_jack_cond element among the array) | 24 | * denotes the last adc_jack_cond element among the array) |
25 | * @min_adc - min adc value for this condition | 25 | * @min_adc: min adc value for this condition |
26 | * @max_adc - max adc value for this condition | 26 | * @max_adc: max adc value for this condition |
27 | * | 27 | * |
28 | * For example, if { .state = 0x3, .min_adc = 100, .max_adc = 200}, it means | 28 | * For example, if { .state = 0x3, .min_adc = 100, .max_adc = 200}, it means |
29 | * that if ADC value is between (inclusive) 100 and 200, than the cable 0 and | 29 | * that if ADC value is between (inclusive) 100 and 200, than the cable 0 and |
@@ -33,34 +33,34 @@ | |||
33 | * because when no adc_jack_cond is met, state = 0 is automatically chosen. | 33 | * because when no adc_jack_cond is met, state = 0 is automatically chosen. |
34 | */ | 34 | */ |
35 | struct adc_jack_cond { | 35 | struct adc_jack_cond { |
36 | u32 state; /* extcon state value. 0 if invalid */ | 36 | u32 state; /* extcon state value. 0 if invalid */ |
37 | u32 min_adc; | 37 | u32 min_adc; |
38 | u32 max_adc; | 38 | u32 max_adc; |
39 | }; | 39 | }; |
40 | 40 | ||
41 | /** | 41 | /** |
42 | * struct adc_jack_pdata - platform data for adc jack device. | 42 | * struct adc_jack_pdata - platform data for adc jack device. |
43 | * @name - name of the extcon device. If null, "adc-jack" is used. | 43 | * @name: name of the extcon device. If null, "adc-jack" is used. |
44 | * @consumer_channel - Unique name to identify the channel on the consumer | 44 | * @consumer_channel: Unique name to identify the channel on the consumer |
45 | * side. This typically describes the channels used within | 45 | * side. This typically describes the channels used within |
46 | * the consumer. E.g. 'battery_voltage' | 46 | * the consumer. E.g. 'battery_voltage' |
47 | * @cable_names - array of cable names ending with null. | 47 | * @cable_names: array of cable names ending with null. |
48 | * @adc_contitions - array of struct adc_jack_cond conditions ending | 48 | * @adc_contitions: array of struct adc_jack_cond conditions ending |
49 | * with .state = 0 entry. This describes how to decode | 49 | * with .state = 0 entry. This describes how to decode |
50 | * adc values into extcon state. | 50 | * adc values into extcon state. |
51 | * @irq_flags - irq flags used for the @irq | 51 | * @irq_flags: irq flags used for the @irq |
52 | * @handling_delay_ms - in some devices, we need to read ADC value some | 52 | * @handling_delay_ms: in some devices, we need to read ADC value some |
53 | * milli-seconds after the interrupt occurs. You may | 53 | * milli-seconds after the interrupt occurs. You may |
54 | * describe such delays with @handling_delay_ms, which | 54 | * describe such delays with @handling_delay_ms, which |
55 | * is rounded-off by jiffies. | 55 | * is rounded-off by jiffies. |
56 | */ | 56 | */ |
57 | struct adc_jack_pdata { | 57 | struct adc_jack_pdata { |
58 | const char *name; | 58 | const char *name; |
59 | const char *consumer_channel; | 59 | const char *consumer_channel; |
60 | /* | 60 | |
61 | * The last entry should be NULL | 61 | /* The last entry should be NULL */ |
62 | */ | ||
63 | const char **cable_names; | 62 | const char **cable_names; |
63 | |||
64 | /* The last entry's state should be 0 */ | 64 | /* The last entry's state should be 0 */ |
65 | struct adc_jack_cond *adc_conditions; | 65 | struct adc_jack_cond *adc_conditions; |
66 | 66 | ||
diff --git a/include/linux/extcon/extcon-gpio.h b/include/linux/extcon/extcon-gpio.h index 2d8307f7d67d..4ce1aa7d29bd 100644 --- a/include/linux/extcon/extcon-gpio.h +++ b/include/linux/extcon/extcon-gpio.h | |||
@@ -25,14 +25,14 @@ | |||
25 | 25 | ||
26 | /** | 26 | /** |
27 | * struct gpio_extcon_platform_data - A simple GPIO-controlled extcon device. | 27 | * struct gpio_extcon_platform_data - A simple GPIO-controlled extcon device. |
28 | * @name The name of this GPIO extcon device. | 28 | * @name: The name of this GPIO extcon device. |
29 | * @gpio Corresponding GPIO. | 29 | * @gpio: Corresponding GPIO. |
30 | * @debounce Debounce time for GPIO IRQ in ms. | 30 | * @debounce: Debounce time for GPIO IRQ in ms. |
31 | * @irq_flags IRQ Flags (e.g., IRQF_TRIGGER_LOW). | 31 | * @irq_flags: IRQ Flags (e.g., IRQF_TRIGGER_LOW). |
32 | * @state_on print_state is overriden with state_on if attached. If Null, | 32 | * @state_on: print_state is overriden with state_on if attached. |
33 | * default method of extcon class is used. | 33 | * If NULL, default method of extcon class is used. |
34 | * @state_off print_state is overriden with state_on if detached. If Null, | 34 | * @state_off: print_state is overriden with state_on if detached. |
35 | * default method of extcon class is used. | 35 | * If NUll, default method of extcon class is used. |
36 | * | 36 | * |
37 | * Note that in order for state_on or state_off to be valid, both state_on | 37 | * Note that in order for state_on or state_off to be valid, both state_on |
38 | * and state_off should be not NULL. If at least one of them is NULL, | 38 | * and state_off should be not NULL. If at least one of them is NULL, |