]> Git Repo - linux.git/commitdiff
Staging: netlogic: Replace comma with a semicolon
authorShraddha Barke <[email protected]>
Tue, 4 Aug 2015 17:50:52 +0000 (23:20 +0530)
committerGreg Kroah-Hartman <[email protected]>
Wed, 5 Aug 2015 19:18:01 +0000 (12:18 -0700)
Replace comma between expression statements by a semicolon.
The semantic patch used is as follows:

@@
expression e1,e2;
@@
e1
- ,
+ ;
e2;

Signed-off-by: Shraddha Barke <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/staging/netlogic/platform_net.c

index 77c3c3522afa2036e595ae35978105ca99be00db..e914147d737976701f1c87dda632c325e39ff103 100644 (file)
@@ -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;
 
This page took 0.052775 seconds and 4 git commands to generate.