[NET] BRIDGE: Fix whitespace errors.
[deliverable/linux.git] / net / bridge / br_notify.c
index 20278494e4da0d11712cfad0ed31f410abc5eb35..8cd3e422907001eec79a146c17ad22856ca5fbaf 100644 (file)
@@ -26,7 +26,7 @@ struct notifier_block br_device_notifier = {
 
 /*
  * Handle changes in state of network devices enslaved to a bridge.
- * 
+ *
  * Note: don't care about up/down if bridge itself is down, because
  *     port state is checked when bridge is brought up.
  */
@@ -60,11 +60,11 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v
                break;
 
        case NETDEV_FEAT_CHANGE:
-               if (br->dev->flags & IFF_UP) 
+               if (br->dev->flags & IFF_UP)
                        br_features_recompute(br);
 
                /* could do recursive feature change notification
-                * but who would care?? 
+                * but who would care??
                 */
                break;
 
@@ -74,7 +74,7 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v
                break;
 
        case NETDEV_UP:
-               if (netif_carrier_ok(dev) && (br->dev->flags & IFF_UP)) 
+               if (netif_carrier_ok(dev) && (br->dev->flags & IFF_UP))
                        br_stp_enable_port(p);
                break;
 
@@ -82,7 +82,7 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v
                spin_unlock_bh(&br->lock);
                br_del_if(br, dev);
                goto done;
-       } 
+       }
        spin_unlock_bh(&br->lock);
 
  done:
This page took 0.243517 seconds and 5 git commands to generate.