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:
Mugunthan V N 2016-08-02 12:01:11 +05:30 committed by Tom Rini
parent ceec08f50b
commit 1610a9212a
1 changed files with 3 additions and 3 deletions

View File

@ -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();