summaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl/pinctrl-xway.c
diff options
context:
space:
mode:
authorAxel Lin2012-11-07 06:37:08 +0100
committerLinus Walleij2012-11-11 19:35:38 +0100
commit6bb0700bfe124f3ee245da24b5bb35152d2e6bfc (patch)
tree4abe0b9cbf46e9c4a0fe12efe467db4f81f241bd /drivers/pinctrl/pinctrl-xway.c
parentMerge branch 'nomadik' into devel (diff)
downloadkernel-qcow2-linux-6bb0700bfe124f3ee245da24b5bb35152d2e6bfc.tar.gz
kernel-qcow2-linux-6bb0700bfe124f3ee245da24b5bb35152d2e6bfc.tar.xz
kernel-qcow2-linux-6bb0700bfe124f3ee245da24b5bb35152d2e6bfc.zip
pinctrl: Staticize pinconf_ops
They are not referenced outside respective driver. Signed-off-by: Axel Lin <axel.lin@ingics.com> Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Cc: Simon Arlott <simon@fire.lp0.eu> Cc: John Crispin <blogic@openwrt.org> Cc: Shawn Guo <shawn.guo@linaro.org> Cc: Stephen Warren <swarren@wwwdotorg.org> Acked-by: Dong Aisheng <dong.aisheng@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-xway.c')
-rw-r--r--drivers/pinctrl/pinctrl-xway.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-xway.c b/drivers/pinctrl/pinctrl-xway.c
index b9bcaec66223..ad90984ec500 100644
--- a/drivers/pinctrl/pinctrl-xway.c
+++ b/drivers/pinctrl/pinctrl-xway.c
@@ -522,7 +522,7 @@ static int xway_pinconf_set(struct pinctrl_dev *pctldev,
return 0;
}
-struct pinconf_ops xway_pinconf_ops = {
+static struct pinconf_ops xway_pinconf_ops = {
.pin_config_get = xway_pinconf_get,
.pin_config_set = xway_pinconf_set,
};