[PATCH] Staging: android: timed_gpio: fixed bare use of 'unsigned'

From: Shyam Saini
Date: Mon Apr 04 2016 - 11:43:59 EST


'unsigned int gpio' is added in place of 'unsigned gpio'

Signed-off-by: Shyam Saini <mayhs11saini@xxxxxxxxx>
---
drivers/staging/android/timed_gpio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/android/timed_gpio.c b/drivers/staging/android/timed_gpio.c
index 914fd10..8926b3f 100644
--- a/drivers/staging/android/timed_gpio.c
+++ b/drivers/staging/android/timed_gpio.c
@@ -29,7 +29,7 @@ struct timed_gpio_data {
struct timed_output_dev dev;
struct hrtimer timer;
spinlock_t lock;
- unsigned gpio;
+ unsigned int gpio;
int max_timeout;
u8 active_low;
};
--
1.9.1