diff options
| author | Chanwoo Choi <cw00.choi@samsung.com> | 2013-08-31 13:16:49 +0900 | 
|---|---|---|
| committer | Chanwoo Choi <cw00.choi@samsung.com> | 2013-09-27 09:37:00 +0900 | 
| commit | a75e1c73a46eed0332d036e371f714e76d167c07 (patch) | |
| tree | e910c19802ead91ec7dc26f1e8d6f63bb7e20faf /drivers/extcon | |
| parent | a33411b26e43d67d361298a822ecfd76a177183f (diff) | |
| download | linux-a75e1c73a46eed0332d036e371f714e76d167c07.tar.bz2 | |
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')
| -rw-r--r-- | drivers/extcon/extcon-adc-jack.c | 20 | ||||
| -rw-r--r-- | drivers/extcon/extcon-class.c | 26 | 
2 files changed, 23 insertions, 23 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 @@  /**   * struct adc_jack_data - internal data for adc_jack device driver - * @edev        - extcon device. - * @cable_names - list of supported cables. - * @num_cables  - size of cable_names. - * @adc_conditions       - list of adc value conditions. - * @num_conditions       - size of adc_conditions. - * @irq         - irq number of attach/detach event (0 if not exist). - * @handling_delay      - interrupt handler will schedule extcon event - *                      handling at handling_delay jiffies. - * @handler     - extcon event handler called by interrupt handler. - * @chan       - iio channel being queried. + * @edev:		extcon device. + * @cable_names:	list of supported cables. + * @num_cables:		size of cable_names. + * @adc_conditions:	list of adc value conditions. + * @num_conditions:	size of adc_conditions. + * @irq:		irq number of attach/detach event (0 if not exist). + * @handling_delay:	interrupt handler will schedule extcon event + *			handling at handling_delay jiffies. + * @handler:		extcon event handler called by interrupt handler. + * @chan:		iio channel being queried.   */  struct adc_jack_data {  	struct extcon_dev edev; diff --git a/drivers/extcon/extcon-class.c b/drivers/extcon/extcon-class.c index 148382faded9..a29720822847 100644 --- a/drivers/extcon/extcon-class.c +++ b/drivers/extcon/extcon-class.c @@ -74,7 +74,7 @@ static DEFINE_MUTEX(extcon_dev_list_lock);  /**   * check_mutually_exclusive - Check if new_state violates mutually_exclusive - *			    condition. + *			      condition.   * @edev:	the extcon device   * @new_state:	new cable attach status for @edev   * @@ -189,7 +189,7 @@ static ssize_t cable_state_show(struct device *dev,  /**   * extcon_update_state() - Update the cable attach states of the extcon device - *			only for the masked bits. + *			   only for the masked bits.   * @edev:	the extcon device   * @mask:	the bit mask to designate updated bits.   * @state:	new cable attach status for @edev @@ -227,7 +227,6 @@ int extcon_update_state(struct extcon_dev *edev, u32 mask, u32 state)  		edev->state |= state & mask;  		raw_notifier_call_chain(&edev->nh, old_state, edev); -  		/* This could be in interrupt handler */  		prop_buf = (char *)get_zeroed_page(GFP_ATOMIC);  		if (prop_buf) { @@ -339,8 +338,9 @@ EXPORT_SYMBOL_GPL(extcon_get_cable_state);  /**   * extcon_set_cable_state_() - Set the status of a specific cable. - * @edev:	the extcon device that has the cable. - * @index:	cable index that can be retrieved by extcon_find_cable_index(). + * @edev:		the extcon device that has the cable. + * @index:		cable index that can be retrieved by + *			extcon_find_cable_index().   * @cable_state:	the new cable status. The default semantics is   *			true: attached / false: detached.   */ @@ -359,8 +359,8 @@ EXPORT_SYMBOL_GPL(extcon_set_cable_state_);  /**   * extcon_set_cable_state() - Set the status of a specific cable. - * @edev:	the extcon device that has the cable. - * @cable_name:	cable name. + * @edev:		the extcon device that has the cable. + * @cable_name:		cable name.   * @cable_state:	the new cable status. The default semantics is   *			true: attached / false: detached.   * @@ -419,14 +419,14 @@ static int _call_per_cable(struct notifier_block *nb, unsigned long val,  /**   * extcon_register_interest() - Register a notifier for a state change of a - *			      specific cable, not an entier set of cables of a - *			      extcon device. - * @obj:	an empty extcon_specific_cable_nb object to be returned. + *				specific cable, not an entier set of cables of a + *				extcon device. + * @obj:		an empty extcon_specific_cable_nb object to be returned.   * @extcon_name:	the name of extcon device.   *			if NULL, extcon_register_interest will register   *			every cable with the target cable_name given.   * @cable_name:		the target cable name. - * @nb:		the notifier block to get notified. + * @nb:			the notifier block to get notified.   *   * Provide an empty extcon_specific_cable_nb. extcon_register_interest() sets   * the struct for you. @@ -487,7 +487,7 @@ EXPORT_SYMBOL_GPL(extcon_register_interest);  /**   * extcon_unregister_interest() - Unregister the notifier registered by - *				extcon_register_interest(). + *				  extcon_register_interest().   * @obj:	the extcon_specific_cable_nb object returned by   *		extcon_register_interest().   */ @@ -502,7 +502,7 @@ EXPORT_SYMBOL_GPL(extcon_unregister_interest);  /**   * extcon_register_notifier() - Register a notifiee to get notified by - *			      any attach status changes from the extcon. + *				any attach status changes from the extcon.   * @edev:	the extcon device.   * @nb:		a notifier block to be registered.   * |