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

Commit 8de3dbd0 authored by Ohad Ben-Cohen's avatar Ohad Ben-Cohen
Browse files

remoteproc: fix !CONFIG_OF build breakage



Fix this:

drivers/remoteproc/remoteproc_core.c: In function 'rproc_get_by_phandle':
>> drivers/remoteproc/remoteproc_core.c:1167:2: error: implicit declaration of function 'of_find_node_by_phandle' [-Werror=implicit-function-declaration]
     np = of_find_node_by_phandle(phandle);

Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Cc: Dave Gerlach <d-gerlach@ti.com>
Cc: Suman Anna <s-anna@ti.com>
Signed-off-by: default avatarOhad Ben-Cohen <ohad@wizery.com>
parent a01bc0d5
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -1178,6 +1178,7 @@ EXPORT_SYMBOL(rproc_shutdown);
 *
 *
 * Returns the rproc handle on success, and NULL on failure.
 * Returns the rproc handle on success, and NULL on failure.
 */
 */
#ifdef CONFIG_OF
struct rproc *rproc_get_by_phandle(phandle phandle)
struct rproc *rproc_get_by_phandle(phandle phandle)
{
{
	struct rproc *rproc = NULL, *r;
	struct rproc *rproc = NULL, *r;
@@ -1201,6 +1202,12 @@ struct rproc *rproc_get_by_phandle(phandle phandle)


	return rproc;
	return rproc;
}
}
#else
struct rproc *rproc_get_by_phandle(phandle phandle)
{
	return NULL;
}
#endif
EXPORT_SYMBOL(rproc_get_by_phandle);
EXPORT_SYMBOL(rproc_get_by_phandle);


/**
/**