summaryrefslogtreecommitdiffstats
path: root/drivers/staging/android
diff options
context:
space:
mode:
authorGreg Kroah-Hartman2011-12-16 22:41:37 +0100
committerGreg Kroah-Hartman2011-12-16 22:41:37 +0100
commitc001dff0f6715813bdb8e978dc8c05416c01962b (patch)
tree36a38b379b5b2d9ee9ca092768c15c089437a414 /drivers/staging/android
parentstaging: android: switch: switch class and GPIO drivers. (diff)
downloadkernel-qcow2-linux-c001dff0f6715813bdb8e978dc8c05416c01962b.tar.gz
kernel-qcow2-linux-c001dff0f6715813bdb8e978dc8c05416c01962b.tar.xz
kernel-qcow2-linux-c001dff0f6715813bdb8e978dc8c05416c01962b.zip
staging: android: switch: minor code formatting cleanups
This fixes a number of minor space issues in the Android switch code. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/android')
-rw-r--r--drivers/staging/android/switch/switch.h2
-rw-r--r--drivers/staging/android/switch/switch_gpio.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/android/switch/switch.h b/drivers/staging/android/switch/switch.h
index 3e4c748e343a..4fcb3109875a 100644
--- a/drivers/staging/android/switch/switch.h
+++ b/drivers/staging/android/switch/switch.h
@@ -30,7 +30,7 @@ struct switch_dev {
struct gpio_switch_platform_data {
const char *name;
- unsigned gpio;
+ unsigned gpio;
/* if NULL, switch_dev.name will be printed */
const char *name_on;
diff --git a/drivers/staging/android/switch/switch_gpio.c b/drivers/staging/android/switch/switch_gpio.c
index 6ba8d97e6bd1..38b2c2f6004e 100644
--- a/drivers/staging/android/switch/switch_gpio.c
+++ b/drivers/staging/android/switch/switch_gpio.c
@@ -91,7 +91,7 @@ static int gpio_switch_probe(struct platform_device *pdev)
switch_data->state_off = pdata->state_off;
switch_data->sdev.print_state = switch_gpio_print_state;
- ret = switch_dev_register(&switch_data->sdev);
+ ret = switch_dev_register(&switch_data->sdev);
if (ret < 0)
goto err_switch_dev_register;
@@ -126,7 +126,7 @@ err_detect_irq_num_failed:
err_set_gpio_input:
gpio_free(switch_data->gpio);
err_request_gpio:
- switch_dev_unregister(&switch_data->sdev);
+ switch_dev_unregister(&switch_data->sdev);
err_switch_dev_register:
kfree(switch_data);
@@ -139,7 +139,7 @@ static int __devexit gpio_switch_remove(struct platform_device *pdev)
cancel_work_sync(&switch_data->work);
gpio_free(switch_data->gpio);
- switch_dev_unregister(&switch_data->sdev);
+ switch_dev_unregister(&switch_data->sdev);
kfree(switch_data);
return 0;