aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorSuman Anna <s-anna@ti.com>2013-07-01 08:30:51 -0400
committerOhad Ben-Cohen <ohad@wizery.com>2013-07-01 08:30:51 -0400
commite4760363ea14b7b707ba68ab780c8ecf98a84c15 (patch)
tree8ed0ed2c1aaa28f91371a261bc735ecbf35055a5 /include/linux
parent57971159208757a37d44356764911703468a7ca3 (diff)
remoteproc/omap: fix a sparse warning
This patch fixes a sparse warning in the omap remoteproc code when OMAP_REMOTEPROC is disabled. include/linux/platform_data/remoteproc-omap.h:76:13: warning: symbol 'omap_rproc_reserve_cma' was not declared. Should it be static? Signed-off-by: Suman Anna <s-anna@ti.com> Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/platform_data/remoteproc-omap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/platform_data/remoteproc-omap.h b/include/linux/platform_data/remoteproc-omap.h
index 3c1c6444ec4b..bfbd12b41162 100644
--- a/include/linux/platform_data/remoteproc-omap.h
+++ b/include/linux/platform_data/remoteproc-omap.h
@@ -50,7 +50,7 @@ void __init omap_rproc_reserve_cma(void);
50 50
51#else 51#else
52 52
53void __init omap_rproc_reserve_cma(void) 53static inline void __init omap_rproc_reserve_cma(void)
54{ 54{
55} 55}
56 56