OSDN Git Service

sfc: Add paranthesis correctly on all branches of the if statement
authorShradha Shah <sshah@solarflare.com>
Tue, 2 Jun 2015 10:37:41 +0000 (11:37 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 2 Jun 2015 19:57:24 +0000 (12:57 -0700)
This change is a stylistic change and does not affect
functionality.

Signed-off-by: Shradha Shah <sshah@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sfc/ef10.c

index 06605ab..14c5205 100644 (file)
@@ -346,9 +346,9 @@ static int efx_ef10_probe(struct efx_nic *efx)
         * ask if it's already enabled
         */
        rc = efx_mcdi_set_workaround(efx, MC_CMD_WORKAROUND_BUG35388, true);
-       if (rc == 0)
+       if (rc == 0) {
                nic_data->workaround_35388 = true;
-       else if (rc == -EPERM) {
+       else if (rc == -EPERM) {
                unsigned int enabled;
 
                rc = efx_mcdi_get_workarounds(efx, NULL, &enabled);
@@ -356,9 +356,9 @@ static int efx_ef10_probe(struct efx_nic *efx)
                        goto fail3;
                nic_data->workaround_35388 = enabled &
                        MC_CMD_GET_WORKAROUNDS_OUT_BUG35388;
-       }
-       else if (rc != -ENOSYS && rc != -ENOENT)
+       } else if (rc != -ENOSYS && rc != -ENOENT) {
                goto fail3;
+       }
        netif_dbg(efx, probe, efx->net_dev,
                  "workaround for bug 35388 is %sabled\n",
                  nic_data->workaround_35388 ? "en" : "dis");