diff options
author | Tracey Dent <tdent48227@gmail.com> | 2012-01-22 21:28:46 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-08 16:47:52 -0800 |
commit | e3251e0d7921fbedfe61cb237c6ce6c273bd93a7 (patch) | |
tree | 19bbfa3c8d8af098d287109dc922526ea7d064b0 /drivers | |
parent | aa5af974127d317071d6225a0f3678c5f520e7ce (diff) | |
download | linux-stable-e3251e0d7921fbedfe61cb237c6ce6c273bd93a7.tar.gz linux-stable-e3251e0d7921fbedfe61cb237c6ce6c273bd93a7.tar.bz2 linux-stable-e3251e0d7921fbedfe61cb237c6ce6c273bd93a7.zip |
drivers/staging/android/timed_gpio.c: Stlye fixes
Just made it more neat and not bother scripts/checkpatch.pl
Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/android/timed_gpio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/android/timed_gpio.c b/drivers/staging/android/timed_gpio.c index a64481c3e86d..bc723eff11af 100644 --- a/drivers/staging/android/timed_gpio.c +++ b/drivers/staging/android/timed_gpio.c @@ -29,9 +29,9 @@ struct timed_gpio_data { struct timed_output_dev dev; struct hrtimer timer; spinlock_t lock; - unsigned gpio; - int max_timeout; - u8 active_low; + unsigned gpio; + int max_timeout; + u8 active_low; }; static enum hrtimer_restart gpio_timer_func(struct hrtimer *timer) |