On Fri, Oct 31, 2025 at 05:08:40PM +0800, Peng Fan wrote: > There is no user of enum imx_rproc_method after moved to ops based > method. Remove it.
Nit: Remove unused field imx_rproc_method after switched to ops based method. Reviewed-by: Frank Li <[email protected]> > > Signed-off-by: Peng Fan <[email protected]> > --- > drivers/remoteproc/imx_rproc.h | 8 -------- > 1 file changed, 8 deletions(-) > > diff --git a/drivers/remoteproc/imx_rproc.h b/drivers/remoteproc/imx_rproc.h > index > 6a7359f05178a937d02b027fe4166319068bd65c..1b2d9f4d6d19dcdc215be97f7e2ab3488281916a > 100644 > --- a/drivers/remoteproc/imx_rproc.h > +++ b/drivers/remoteproc/imx_rproc.h > @@ -15,13 +15,6 @@ struct imx_rproc_att { > int flags; > }; > > -/* Remote core start/stop method */ > -enum imx_rproc_method { > - IMX_RPROC_NONE, > - /* Through ARM SMCCC */ > - IMX_RPROC_SMC, > -}; > - > /* dcfg flags */ > #define IMX_RPROC_NEED_SYSTEM_OFF BIT(0) > #define IMX_RPROC_NEED_CLKS BIT(1) > @@ -42,7 +35,6 @@ struct imx_rproc_dcfg { > u32 gpr_wait; > const struct imx_rproc_att *att; > size_t att_size; > - enum imx_rproc_method method; > u32 flags; > const struct imx_rproc_plat_ops *ops; > }; > > -- > 2.37.1 >

