diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-02-11 20:48:00 (GMT) |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-02-13 23:26:36 (GMT) |
commit | 75177deee91c17b374b827a832c0d2061ce0f07e (patch) | |
tree | c8e847f6139f0498199d9b3a26853493e81f98af /drivers/mfd/syscon.c | |
parent | 1765dbccaa5aa2db7b53dc765f0e636591876c03 (diff) | |
download | linux-75177deee91c17b374b827a832c0d2061ce0f07e.tar.xz |
mfd: syscon: Fix sparse warning
Fix the following sparse warnings:
drivers/mfd/syscon.c:40:15: warning: symbol 'syscon_node_to_regmap' was not declared. Should it be static?
drivers/mfd/syscon.c:56:15: warning: symbol 'syscon_regmap_lookup_by_compatible' was not declared. Should it be static?
drivers/mfd/syscon.c:72:15: warning: symbol 'syscon_regmap_lookup_by_phandle' was not declared. Should it be static?
Cc: Dong Aisheng <dong.aisheng@linaro.org>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/syscon.c')
-rw-r--r-- | drivers/mfd/syscon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c index 3f10591..61aea63 100644 --- a/drivers/mfd/syscon.c +++ b/drivers/mfd/syscon.c @@ -20,6 +20,7 @@ #include <linux/of_platform.h> #include <linux/platform_device.h> #include <linux/regmap.h> +#include <linux/mfd/syscon.h> static struct platform_driver syscon_driver; |