From: Sachin Kamat Date: Thu, 24 Jan 2013 09:31:00 +0000 (+0530) Subject: pinctrl: core: Make pinctrl_release static X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2917e8338c9b8fbd7374621a3291004984590d21;p=linux-beck.git pinctrl: core: Make pinctrl_release static 'pinctrl_release' is used only in this file. Hence make it static. Without this patch we get the following sparse error: drivers/pinctrl/core.c:815:6: warning: symbol 'pinctrl_release' was not declared. Should it be static? Signed-off-by: Sachin Kamat Signed-off-by: Linus Walleij --- diff --git a/drivers/pinctrl/core.c b/drivers/pinctrl/core.c index 5a2fe9aae20f..b0a8e9a38393 100644 --- a/drivers/pinctrl/core.c +++ b/drivers/pinctrl/core.c @@ -812,7 +812,7 @@ static void pinctrl_put_locked(struct pinctrl *p, bool inlist) * pinctrl_release() - release the pinctrl handle * @kref: the kref in the pinctrl being released */ -void pinctrl_release(struct kref *kref) +static void pinctrl_release(struct kref *kref) { struct pinctrl *p = container_of(kref, struct pinctrl, users);