Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753411AbbHDOQx (ORCPT ); Tue, 4 Aug 2015 10:16:53 -0400 Received: from mail-wi0-f177.google.com ([209.85.212.177]:38215 "EHLO mail-wi0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751209AbbHDOQv (ORCPT ); Tue, 4 Aug 2015 10:16:51 -0400 From: Shraddha Barke To: linux-kernel@vger.kernel.org, Julia Lawall , Joe Perches , Jiayi Ye , Greg Kroah-Hartman , Andreas Dilger , Oleg Drokin , devel@driverdev.osuosl.org, HPDD-discuss@ml01.01.org Cc: Shraddha Barke Subject: [PATCH v3 3/3] Staging: netlogic: Replace comma with a semicolon Date: Tue, 4 Aug 2015 19:46:26 +0530 Message-Id: <1438697786-5743-1-git-send-email-shraddha.6596@gmail.com> X-Mailer: git-send-email 2.1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1082 Lines: 38 Replace comma between expression statements by a semicolon. The semantic patch used is as follows: @@ expression e1,e2; @@ e1 - , + ; e2; --- Changes in v3: -No changes made. drivers/staging/netlogic/platform_net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/netlogic/platform_net.c b/drivers/staging/netlogic/platform_net.c index 77c3c35..e914147 100644 --- a/drivers/staging/netlogic/platform_net.c +++ b/drivers/staging/netlogic/platform_net.c @@ -163,7 +163,7 @@ static void xls_gmac_init(void) switch (nlm_prom_info.board_major_version) { case 12: /* first block RGMII or XAUI, use RGMII */ - ndata0.phy_interface = PHY_INTERFACE_MODE_RGMII, + ndata0.phy_interface = PHY_INTERFACE_MODE_RGMII; ndata0.tx_stnid[0] = FMN_STNID_GMAC0_TX0; ndata0.phy_addr[0] = 0; -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/