diff options
author | Chanwoo Choi <cw00.choi@samsung.com> | 2013-08-22 21:21:37 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-26 15:03:30 -0400 |
commit | c2275d2fa587712d285a4db97a68322a233ad2c8 (patch) | |
tree | 572602db3866ccd4ad67efd32c41f600ee75bf55 /drivers/extcon/extcon-class.c | |
parent | 30399bbfa698689e81f9507992034fe09700941b (diff) |
extcon: Fix up 80 column coding style issues
This patch fix 80 column coding sytle issues by using checkpatch script.
Cc: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Cc: Mark Brown <broonie@kernel.org>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Myungjoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/extcon/extcon-class.c')
-rw-r--r-- | drivers/extcon/extcon-class.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/extcon/extcon-class.c b/drivers/extcon/extcon-class.c index 148382faded9..17544320d1a6 100644 --- a/drivers/extcon/extcon-class.c +++ b/drivers/extcon/extcon-class.c | |||
@@ -452,7 +452,8 @@ int extcon_register_interest(struct extcon_specific_cable_nb *obj, | |||
452 | if (!obj->edev) | 452 | if (!obj->edev) |
453 | return -ENODEV; | 453 | return -ENODEV; |
454 | 454 | ||
455 | obj->cable_index = extcon_find_cable_index(obj->edev, cable_name); | 455 | obj->cable_index = extcon_find_cable_index(obj->edev, |
456 | cable_name); | ||
456 | if (obj->cable_index < 0) | 457 | if (obj->cable_index < 0) |
457 | return obj->cable_index; | 458 | return obj->cable_index; |
458 | 459 | ||
@@ -460,7 +461,8 @@ int extcon_register_interest(struct extcon_specific_cable_nb *obj, | |||
460 | 461 | ||
461 | obj->internal_nb.notifier_call = _call_per_cable; | 462 | obj->internal_nb.notifier_call = _call_per_cable; |
462 | 463 | ||
463 | return raw_notifier_chain_register(&obj->edev->nh, &obj->internal_nb); | 464 | return raw_notifier_chain_register(&obj->edev->nh, |
465 | &obj->internal_nb); | ||
464 | } else { | 466 | } else { |
465 | struct class_dev_iter iter; | 467 | struct class_dev_iter iter; |
466 | struct extcon_dev *extd; | 468 | struct extcon_dev *extd; |