From: Tanmay Shah Date: Fri, 8 May 2026 17:40:06 +0000 (-0700) Subject: remoteproc: xlnx: Remove binding header dependency X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16ec643e3b226739c3e770e062b8acdc8d3719be;p=thirdparty%2Fkernel%2Fstable.git remoteproc: xlnx: Remove binding header dependency Bindings can be deprecated and driver should not include bindings headers directly. Instead define needed constants in the driver. Signed-off-by: Tanmay Shah Link: https://lore.kernel.org/r/20260508174006.3783082-1-tanmay.shah@amd.com Signed-off-by: Mathieu Poirier --- diff --git a/drivers/remoteproc/xlnx_r5_remoteproc.c b/drivers/remoteproc/xlnx_r5_remoteproc.c index 45a62cb98072..f5b736fa3cb4 100644 --- a/drivers/remoteproc/xlnx_r5_remoteproc.c +++ b/drivers/remoteproc/xlnx_r5_remoteproc.c @@ -4,7 +4,6 @@ * */ -#include #include #include #include @@ -19,6 +18,11 @@ #include "remoteproc_internal.h" +#define PD_R5_0_ATCM 15 +#define PD_R5_0_BTCM 16 +#define PD_R5_1_ATCM 17 +#define PD_R5_1_BTCM 18 + /* IPI buffer MAX length */ #define IPI_BUF_LEN_MAX 32U