From: Suman Anna Date: Fri, 19 Jul 2019 15:27:56 +0000 (-0500) Subject: remoteproc: Fix potential build issues with SPL remoteproc X-Git-Tag: v2019.10-rc1~15^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26557d1025eff712a5fd5ff98cfd831727bdd009;p=platform%2Fkernel%2Fu-boot.git remoteproc: Fix potential build issues with SPL remoteproc The rproc uclass driver can either be built with SPL_REMOTEPROC or REMOTEPROC, but the function prototypes in remoteproc.h are defined only when CONFIG_REMOTEPROC is defined. This can cause build issues in SPL if CONFIG_REMOTEPROC is not selected. Fix this by replacing the existing precompiler macro usage with CONFIG_IS_ENABLED. Fixes: ddf56bc7e3ef ("drivers: Introduce a simplified remoteproc framework") Signed-off-by: Suman Anna Reviewed-by: Nishanth Menon Reviewed-by: Lokesh Vutla --- diff --git a/include/remoteproc.h b/include/remoteproc.h index c29c086..4987194 100644 --- a/include/remoteproc.h +++ b/include/remoteproc.h @@ -130,7 +130,7 @@ struct dm_rproc_ops { /* Accessor */ #define rproc_get_ops(dev) ((struct dm_rproc_ops *)(dev)->driver->ops) -#ifdef CONFIG_REMOTEPROC +#if CONFIG_IS_ENABLED(REMOTEPROC) /** * rproc_init() - Initialize all bound remote proc devices * @return 0 if all ok, else appropriate error value.