]> Git Repo - linux.git/commitdiff
remoteproc: fix !CONFIG_OF build breakage
authorOhad Ben-Cohen <[email protected]>
Thu, 18 Jun 2015 08:44:41 +0000 (11:44 +0300)
committerOhad Ben-Cohen <[email protected]>
Thu, 18 Jun 2015 08:44:41 +0000 (11:44 +0300)
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: kbuild test robot <[email protected]>
Cc: Dave Gerlach <[email protected]>
Cc: Suman Anna <[email protected]>
Signed-off-by: Ohad Ben-Cohen <[email protected]>
drivers/remoteproc/remoteproc_core.c

index b4ab38015cf23220d6c6a98aca321262d69cf3ab..8b3130f22b42b334ff0d22718e46484012fb2c2b 100644 (file)
@@ -1178,6 +1178,7 @@ EXPORT_SYMBOL(rproc_shutdown);
  *
  * Returns the rproc handle on success, and NULL on failure.
  */
+#ifdef CONFIG_OF
 struct rproc *rproc_get_by_phandle(phandle phandle)
 {
        struct rproc *rproc = NULL, *r;
@@ -1201,6 +1202,12 @@ struct rproc *rproc_get_by_phandle(phandle phandle)
 
        return rproc;
 }
+#else
+struct rproc *rproc_get_by_phandle(phandle phandle)
+{
+       return NULL;
+}
+#endif
 EXPORT_SYMBOL(rproc_get_by_phandle);
 
 /**
This page took 0.05335 seconds and 4 git commands to generate.