aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/vexpress-syscfg.c
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2014-07-20 01:25:39 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-22 19:28:11 -0400
commitf222447ea1b70a651ec280bfb4a2fde4cbeae983 (patch)
tree17b5842e71e2d71bca2db30f2da62699c64a9cb0 /drivers/misc/vexpress-syscfg.c
parent8f642155c5ddafe1247c085f3f0c7b4e63044878 (diff)
misc: vexpress: Fix sparse non static symbol warnings
Fixes the following sparse warnings: drivers/misc/vexpress-syscfg.c:133:22: warning: symbol 'vexpress_syscfg_regmap_config' was not declared. Should it be static? drivers/misc/vexpress-syscfg.c:279:5: warning: symbol 'vexpress_syscfg_probe' was not declared. Should it be static? Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/vexpress-syscfg.c')
-rw-r--r--drivers/misc/vexpress-syscfg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/vexpress-syscfg.c b/drivers/misc/vexpress-syscfg.c
index 3250fc1df0aa..b3a812384a6f 100644
--- a/drivers/misc/vexpress-syscfg.c
+++ b/drivers/misc/vexpress-syscfg.c
@@ -130,7 +130,7 @@ static int vexpress_syscfg_write(void *context, unsigned int index,
130 return vexpress_syscfg_exec(func, index, true, &val); 130 return vexpress_syscfg_exec(func, index, true, &val);
131} 131}
132 132
133struct regmap_config vexpress_syscfg_regmap_config = { 133static struct regmap_config vexpress_syscfg_regmap_config = {
134 .lock = vexpress_config_lock, 134 .lock = vexpress_config_lock,
135 .unlock = vexpress_config_unlock, 135 .unlock = vexpress_config_unlock,
136 .reg_bits = 32, 136 .reg_bits = 32,
@@ -276,7 +276,7 @@ int vexpress_syscfg_device_register(struct platform_device *pdev)
276} 276}
277 277
278 278
279int vexpress_syscfg_probe(struct platform_device *pdev) 279static int vexpress_syscfg_probe(struct platform_device *pdev)
280{ 280{
281 struct vexpress_syscfg *syscfg; 281 struct vexpress_syscfg *syscfg;
282 struct resource *res; 282 struct resource *res;