Re: [PATCH] net: stmmac: Fix missing spin_lock_init in visconti_eth_dwmac_probe()

2021-02-24 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Tue, 23 Feb 2021 10:48:03 + you wrote: > The driver allocates the spinlock but not initialize it. > Use spin_lock_init() on it to initialize it correctly. > > Fixes: b38dd98ff8d0 ("net: stmmac: Add Toshiba Visconti SoCs

Re: [PATCH] net: stmmac: Fix missing spin_lock_init in visconti_eth_dwmac_probe()

2021-02-23 Thread Nobuhiro Iwamatsu
Hi, On Tue, Feb 23, 2021 at 10:48:03AM +, Wei Yongjun wrote: > The driver allocates the spinlock but not initialize it. > Use spin_lock_init() on it to initialize it correctly. > > Fixes: b38dd98ff8d0 ("net: stmmac: Add Toshiba Visconti SoCs glue driver") > Reported-by: Hulk Robot > Signed-o

[PATCH] net: stmmac: Fix missing spin_lock_init in visconti_eth_dwmac_probe()

2021-02-23 Thread Wei Yongjun
The driver allocates the spinlock but not initialize it. Use spin_lock_init() on it to initialize it correctly. Fixes: b38dd98ff8d0 ("net: stmmac: Add Toshiba Visconti SoCs glue driver") Reported-by: Hulk Robot Signed-off-by: Wei Yongjun --- drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c