Re: [PATCH] net: pcs: rzn1-miic: Fix config array initialization
Geert Uytterhoeven <[email protected]>
| Newsgroups | org.kernel.vger.linux-renesas-soc,org.kernel.vger.linux-kernel,org.kernel.vger.netdev |
|---|---|
| Message-ID | <CAMuHMdWUrabJOWLAiSrSm=r7KbuZn4CrVZiswJsf96U3STaNTw@mail.gmail.com> |
CC Prabhakar On Thu, 13 Aug 2026 at 20:09, Kyle Hendry via B4 Relay <[email protected]> wrote: > From: Kyle Hendry <[email protected]> > > Fix memset parameters to initialize the entire DT value array > > Signed-off-by: Kyle Hendry <[email protected]> Fixes: f39e968dc168a7bd ("net: pcs: rzn1-miic: Move configuration data to SoC-specific struct") Reviewed-by: Geert Uytterhoeven <[email protected]> > --- a/drivers/net/pcs/pcs-rzn1-miic.c > +++ b/drivers/net/pcs/pcs-rzn1-miic.c > @@ -683,7 +683,7 @@ static int miic_parse_dt(struct miic *miic, u32 *mode_cfg) > if (!dt_val) > return -ENOMEM; > > - memset(dt_val, MIIC_MODCTRL_CONF_NONE, sizeof(*dt_val)); > + memset(dt_val, MIIC_MODCTRL_CONF_NONE, miic->of_data->conf_conv_count); > > if (of_property_read_u32(np, "renesas,miic-switch-portin", &conf) == 0) > dt_val[0] = conf; > Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [email protected] In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds