[PATCH net-next v3 7/7] net: dsa: qca8k: Remove redundant parentheses

From: Michal VokÃÄ
Date: Wed May 23 2018 - 01:27:50 EST


Fix warning reported by checkpatch.

Signed-off-by: Michal VokÃÄ <michal.vokac@xxxxxxxxx>
Reviewed-by: Andrew Lunn <andrew@xxxxxxx>
Reviewed-by: Florian Fainelli <f.fainelli@xxxxxxxxx>
---
Changes in v3:
- none

Changes in v2:
- Fix typo in subject.
- Add "Reviewed-by" tags from Andrew and Florian.

drivers/net/dsa/qca8k.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/dsa/qca8k.c b/drivers/net/dsa/qca8k.c
index c834893..c0da402 100644
--- a/drivers/net/dsa/qca8k.c
+++ b/drivers/net/dsa/qca8k.c
@@ -513,7 +513,7 @@ qca8k_port_set_status(struct qca8k_priv *priv, int port, int enable)
pr_debug("qca: port %i set status %i\n", port, enable);

/* Port 0 and 6 have no internal PHY */
- if ((port > 0) && (port < 6))
+ if (port > 0 && port < 6)
mask |= QCA8K_PORT_STATUS_LINK_AUTO;

if (enable)
--
2.7.4