drivers: net: keystone_net: fix line termination with semi-colon
Each line should be terminated by semi-colon. It was not caught earlier as there is a proper statement. Fix it by changing the comma with semi-colon. Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
ceec08f50b
commit
1610a9212a
@ -906,9 +906,9 @@ static int ks2_eth_probe(struct udevice *dev)
|
||||
pll_pa_clk_sel();
|
||||
|
||||
|
||||
priv->net_rx_buffs.buff_ptr = rx_buffs,
|
||||
priv->net_rx_buffs.num_buffs = RX_BUFF_NUMS,
|
||||
priv->net_rx_buffs.buff_len = RX_BUFF_LEN,
|
||||
priv->net_rx_buffs.buff_ptr = rx_buffs;
|
||||
priv->net_rx_buffs.num_buffs = RX_BUFF_NUMS;
|
||||
priv->net_rx_buffs.buff_len = RX_BUFF_LEN;
|
||||
|
||||
/* Register MDIO bus */
|
||||
mdio_bus = mdio_alloc();
|
||||
|
Loading…
Reference in New Issue
Block a user