aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/arche-platform.c
diff options
context:
space:
mode:
authorDavid Lin <dtwlin@google.com>2016-03-07 21:52:54 -0800
committerGreg Kroah-Hartman <gregkh@google.com>2016-03-08 06:21:21 -0800
commit7fe9301422444a1fca71bb8c4c0673fb44eb0f2d (patch)
treefa834d87936d9c4c293d3182b419c83779ca3891 /drivers/staging/greybus/arche-platform.c
parentgreybus: properly annotate struct gb_control_timesync_enable_request (diff)
downloadlinux-dev-7fe9301422444a1fca71bb8c4c0673fb44eb0f2d.tar.xz
linux-dev-7fe9301422444a1fca71bb8c4c0673fb44eb0f2d.zip
greybus: arche-platform: fix incorrect gpio variable type
GPIO number obtained from of_get_named_gpio() should be signed to allow error handling. Testing Done: Built & booted on EVT1.5 Signed-off-by: David Lin <dtwlin@google.com> Reviewed-by: Vaibhav Hiremath <vaibhav.hiremath@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/arche-platform.c')
-rw-r--r--drivers/staging/greybus/arche-platform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/greybus/arche-platform.c b/drivers/staging/greybus/arche-platform.c
index 64dd8a1ebe37..3293661d876a 100644
--- a/drivers/staging/greybus/arche-platform.c
+++ b/drivers/staging/greybus/arche-platform.c
@@ -44,7 +44,7 @@ struct arche_platform_drvdata {
enum arche_platform_state state;
- unsigned int svc_refclk_req;
+ int svc_refclk_req;
struct clk *svc_ref_clk;
struct pinctrl *pinctrl;