diff options
author | Murali Karicheri <m-karicheri2@ti.com> | 2019-04-05 19:31:25 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-04-07 03:32:20 +0200 |
commit | 5670342ced28b87f598d97e49d27bd99b38c1665 (patch) | |
tree | fe104e0b2c79c3dda111abdb76fb574bfb174f02 /net/hsr/hsr_slave.c | |
parent | net: hsr: fix multiple blank lines in the code (diff) | |
download | linux-5670342ced28b87f598d97e49d27bd99b38c1665.tar.xz linux-5670342ced28b87f598d97e49d27bd99b38c1665.zip |
net: hsr: remove unnecessary paranthesis from the code
This patch fixes unnecessary paranthesis from the code. This is
seen when ran checkpatch.pl -f option on files under net/hsr.
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/hsr/hsr_slave.c')
-rw-r--r-- | net/hsr/hsr_slave.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/hsr/hsr_slave.c b/net/hsr/hsr_slave.c index 80151c255a1d..d506c694ee25 100644 --- a/net/hsr/hsr_slave.c +++ b/net/hsr/hsr_slave.c @@ -63,8 +63,8 @@ bool hsr_port_exists(const struct net_device *dev) static int hsr_check_dev_ok(struct net_device *dev) { /* Don't allow HSR on non-ethernet like devices */ - if ((dev->flags & IFF_LOOPBACK) || (dev->type != ARPHRD_ETHER) || - (dev->addr_len != ETH_ALEN)) { + if ((dev->flags & IFF_LOOPBACK) || dev->type != ARPHRD_ETHER || + dev->addr_len != ETH_ALEN) { netdev_info(dev, "Cannot use loopback or non-ethernet device as HSR slave.\n"); return -EINVAL; } |