Re: [PATCH] net: ethernet: clean out braces / old code (found via checkpatch)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Oct 2, 2012 at 6:56 AM,  <matthew@xxxxxxxxxxx> wrote:
> From: Matthew Walster <matthew@xxxxxxxxxxx>
>
> Remove an old commented out piece of code.
> Remove an if(true) statement.
> Remove a set of braces that weren't strictly necessary.
>
> All found by running checkpatch.pl against the code.
>
> Signed-off-by: Matthew Walster <matthew@xxxxxxxxxxx>
> ---
>  net/ethernet/eth.c |    7 ++-----
>  1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/net/ethernet/eth.c b/net/ethernet/eth.c
> index 4efad53..a9f8531 100644
> --- a/net/ethernet/eth.c
> +++ b/net/ethernet/eth.c
> @@ -178,11 +178,8 @@ __be16 eth_type_trans(struct sk_buff *skb, struct net_device *dev)
>          *      seems to set IFF_PROMISC.
>          */
>
> -       else if (1 /*dev->flags&IFF_PROMISC */ ) {
> -               if (unlikely(!ether_addr_equal_64bits(eth->h_dest,
> -                                                     dev->dev_addr)))
> -                       skb->pkt_type = PACKET_OTHERHOST;
> -       }
> +       else if (unlikely(!ether_addr_equal_64bits(eth->h_dest, dev->dev_addr)))
> +               skb->pkt_type = PACKET_OTHERHOST;
>
>         /*
>          * Some variants of DSA tagging don't have an ethertype field
> --
> 1.7.10.4
>
>

Looks good to me.

-- 
Peace and Blessings,
-Scott.

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@xxxxxxxxxxxxxxxxx
http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies


[Index of Archives]     [Newbies FAQ]     [Linux Kernel Mentors]     [Linux Kernel Development]     [IETF Annouce]     [Git]     [Networking]     [Security]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux SCSI]     [Linux ACPI]
  Powered by Linux