diff mbox

[U-Boot,1/5] drivers: net: keystone_net: fix line termination with semi-colon

Message ID 20160802063115.12722-2-mugunthanvnm@ti.com
State Accepted
Commit 1610a9212affc5cb45b121dbbd8637a07ea77142
Delegated to: Tom Rini
Headers show

Commit Message

Mugunthan V N Aug. 2, 2016, 6:31 a.m. UTC
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>
---
 drivers/net/keystone_net.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Tom Rini Aug. 2, 2016, 5:38 p.m. UTC | #1
On Tue, Aug 02, 2016 at 12:01:11PM +0530, Mugunthan V N wrote:

> 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>
Tom Rini Aug. 10, 2016, 12:46 a.m. UTC | #2
On Tue, Aug 02, 2016 at 12:01:11PM +0530, Mugunthan V N wrote:

> 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>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/drivers/net/keystone_net.c b/drivers/net/keystone_net.c
index 6b28df0..1756c09 100644
--- a/drivers/net/keystone_net.c
+++ b/drivers/net/keystone_net.c
@@ -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();