Hi Biju, Thank you for the review. On Wed, Apr 2, 2025 at 7:27 PM Biju Das <biju.das.jz@xxxxxxxxxxxxxx> wrote: > > Hi Prabhakar, > > > -----Original Message----- > > From: Prabhakar <prabhakar.csengg@xxxxxxxxx> > > Sent: 30 March 2025 22:07 > > Subject: [PATCH 17/17] drm: renesas: rz-du: mipi_dsi: Add support for RZ/V2H(P) SoC > > > > From: Lad Prabhakar <prabhakar.mahadev-lad.rj@xxxxxxxxxxxxxx> > > > > Add DSI support for Renesas RZ/V2H(P) SoC. > > > > Co-developed-by: Fabrizio Castro <fabrizio.castro.jz@xxxxxxxxxxx> > > Signed-off-by: Fabrizio Castro <fabrizio.castro.jz@xxxxxxxxxxx> > > Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@xxxxxxxxxxxxxx> > > --- > > .../gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c | 450 ++++++++++++++++++ > > .../drm/renesas/rz-du/rzg2l_mipi_dsi_regs.h | 40 ++ > > 2 files changed, 490 insertions(+) > > > > diff --git a/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c b/drivers/gpu/drm/renesas/rz- > > du/rzg2l_mipi_dsi.c > > index 26ec0f5d065a..3a70f479d473 100644 > > --- a/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c > > +++ b/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c > > @@ -5,6 +5,7 @@ > > * Copyright (C) 2022 Renesas Electronics Corporation > > */ > > #include <linux/clk.h> > > +#include <linux/clk/renesas-rzv2h-dsi.h> > > #include <linux/delay.h> > > #include <linux/io.h> > > #include <linux/iopoll.h> > > @@ -30,6 +31,9 @@ <snip> > > + > > +#define PHYC1R 0x034 > > + > > +#define PHYC2R 0x038 > > + > > +#define PHYC3R 0x03c > > Looks the above 3 macros unused. > > Maybe either use #define PHYCR(x) (0x030 + (x) * 4) where x = {0,3} > > Or > > Drop the unused macros. > I'll drop them. Cheers, Prabhakar