From: Michal Kubecek <mkube...@suse.cz>
Date: Fri, 15 Aug 2014 11:56:17 +0200 (CEST)

> @@ -2587,13 +2587,18 @@ netdev_features_t netif_skb_features(struct sk_buff 
> *skb)
>               return harmonize_features(skb, features);
>       }
>  
> -     features &= (skb->dev->vlan_features | NETIF_F_HW_VLAN_CTAG_TX |
> -                                            NETIF_F_HW_VLAN_STAG_TX);
> +     features = netdev_intersect_features(features, skb->dev->vlan_features |
> +                                                    NETIF_F_HW_VLAN_CTAG_TX |
> +                                                    NETIF_F_HW_VLAN_STAG_TX);

This is not indented properly.

The second and subsequent lines of the function call should start precisely
at the first column after the openning parenthesis on the first line.  You
should use the appropriate number of TAB and SPACE characters necessary
to do so.

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to