From: Wei Yongjun Date: Thu, 28 Nov 2013 02:27:59 +0000 (+0800) Subject: staging: dwc2: fix sparse non static symbol warning X-Git-Tag: v3.14-rc1~13^2~593 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=49cf10c67bfbd68bc646390cd1f4cbe77aea12d5;p=kernel%2Fkernel-generic.git staging: dwc2: fix sparse non static symbol warning Fixes the following sparse warning: drivers/staging/dwc2/core.c:2672:6: warning: symbol 'dwc2_set_param_uframe_sched' was not declared. Should it be static? Signed-off-by: Wei Yongjun Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/dwc2/core.c b/drivers/staging/dwc2/core.c index 8a71726..8565d87 100644 --- a/drivers/staging/dwc2/core.c +++ b/drivers/staging/dwc2/core.c @@ -2510,7 +2510,7 @@ void dwc2_set_param_otg_ver(struct dwc2_hsotg *hsotg, int val) hsotg->core_params->otg_ver = val; } -void dwc2_set_param_uframe_sched(struct dwc2_hsotg *hsotg, int val) +static void dwc2_set_param_uframe_sched(struct dwc2_hsotg *hsotg, int val) { if (DWC2_OUT_OF_BOUNDS(val, 0, 1)) { if (val >= 0) {