Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e4760363 authored by Suman Anna's avatar Suman Anna Committed by Ohad Ben-Cohen
Browse files

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: default avatarSuman Anna <s-anna@ti.com>
Signed-off-by: default avatarOhad Ben-Cohen <ohad@wizery.com>
parent 57971159
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ void __init omap_rproc_reserve_cma(void);

#else

void __init omap_rproc_reserve_cma(void)
static inline void __init omap_rproc_reserve_cma(void)
{
}