mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2026-01-27 12:35:36 +01:00
phy: marvell: a3700-comphy: Fix hardcoded array size
[ Upstream commit627207703b] Replace hardcoded 'gbe_phy_init' array size by explicit one. Fixes:934337080c("phy: marvell: phy-mvebu-a3700-comphy: Add native kernel implementation") Signed-off-by: Mikhail Kobuk <m.kobuk@ispras.ru> Link: https://lore.kernel.org/r/20240321164734.49273-2-m.kobuk@ispras.ru Signed-off-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
610f175d2e
commit
73e4d4f6f7
|
|
@ -603,7 +603,7 @@ static void comphy_gbe_phy_init(struct mvebu_a3700_comphy_lane *lane,
|
|||
u16 val;
|
||||
|
||||
fix_idx = 0;
|
||||
for (addr = 0; addr < 512; addr++) {
|
||||
for (addr = 0; addr < ARRAY_SIZE(gbe_phy_init); addr++) {
|
||||
/*
|
||||
* All PHY register values are defined in full for 3.125Gbps
|
||||
* SERDES speed. The values required for 1.25 Gbps are almost
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user