aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/extcon/extcon-adc-jack.c
diff options
context:
space:
mode:
authorChanwoo Choi <cw00.choi@samsung.com>2013-08-31 00:16:49 -0400
committerChanwoo Choi <cw00.choi@samsung.com>2013-09-26 20:37:00 -0400
commita75e1c73a46eed0332d036e371f714e76d167c07 (patch)
treee910c19802ead91ec7dc26f1e8d6f63bb7e20faf /drivers/extcon/extcon-adc-jack.c
parenta33411b26e43d67d361298a822ecfd76a177183f (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 'drivers/extcon/extcon-adc-jack.c')
-rw-r--r--drivers/extcon/extcon-adc-jack.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/extcon/extcon-adc-jack.c b/drivers/extcon/extcon-adc-jack.c
index 5985807e52c9..5d16428afd53 100644
--- a/drivers/extcon/extcon-adc-jack.c
+++ b/drivers/extcon/extcon-adc-jack.c
@@ -27,16 +27,16 @@
27 27
28/** 28/**
29 * struct adc_jack_data - internal data for adc_jack device driver 29 * struct adc_jack_data - internal data for adc_jack device driver
30 * @edev - extcon device. 30 * @edev: extcon device.
31 * @cable_names - list of supported cables. 31 * @cable_names: list of supported cables.
32 * @num_cables - size of cable_names. 32 * @num_cables: size of cable_names.
33 * @adc_conditions - list of adc value conditions. 33 * @adc_conditions: list of adc value conditions.
34 * @num_conditions - size of adc_conditions. 34 * @num_conditions: size of adc_conditions.
35 * @irq - irq number of attach/detach event (0 if not exist). 35 * @irq: irq number of attach/detach event (0 if not exist).
36 * @handling_delay - interrupt handler will schedule extcon event 36 * @handling_delay: interrupt handler will schedule extcon event
37 * handling at handling_delay jiffies. 37 * handling at handling_delay jiffies.
38 * @handler - extcon event handler called by interrupt handler. 38 * @handler: extcon event handler called by interrupt handler.
39 * @chan - iio channel being queried. 39 * @chan: iio channel being queried.
40 */ 40 */
41struct adc_jack_data { 41struct adc_jack_data {
42 struct extcon_dev edev; 42 struct extcon_dev edev;