Hi Geert, Thank you for the review.
On Wed, Apr 9, 2025 at 9:16 AM Geert Uytterhoeven <ge...@linux-m68k.org> wrote: > > Hi Prabhakar, > > On Tue, 8 Apr 2025 at 22:09, Prabhakar <prabhakar.cse...@gmail.com> wrote: > > From: Lad Prabhakar <prabhakar.mahadev-lad...@bp.renesas.com> > > > > Pass the HSFREQ in milli-Hz to the `dphy_init()` callback to improve > > precision, especially for the RZ/V2H(P) SoC, where PLL dividers require > > high accuracy. > > > > These changes prepare the driver for upcoming RZ/V2H(P) SoC support. > > > > Co-developed-by: Fabrizio Castro <fabrizio.castro...@renesas.com> > > Signed-off-by: Fabrizio Castro <fabrizio.castro...@renesas.com> > > Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad...@bp.renesas.com> > > Thanks for your patch! > > > --- a/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c > > +++ b/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c > > @@ -33,7 +33,7 @@ > > struct rzg2l_mipi_dsi; > > > > struct rzg2l_mipi_dsi_hw_info { > > - int (*dphy_init)(struct rzg2l_mipi_dsi *dsi, unsigned long hsfreq); > > + int (*dphy_init)(struct rzg2l_mipi_dsi *dsi, unsigned long long > > hsfreq_mhz); > > Due to the lack of capitalization of the "hz" part, it is not clear > that the "m" stands for "milli" instead of "mega". > Perhaps hsfreq_mHz or hsfreq_millihz? > Agreed, I will use `hsfreq_millihz`. Shall I respin a new version as the initial patches do the same (i.e. use mhz). Cheers, Prabhakar