Commit cb625e9c authored by Peng Li's avatar Peng Li Committed by David S. Miller

net: hd64570: remove redundant parentheses

Remove redundant parentheses around 'cda >= desc_off'.
Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
Signed-off-by: default avatarGuangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 53da5342
...@@ -301,7 +301,7 @@ static inline void sca_rx_intr(port_t *port) ...@@ -301,7 +301,7 @@ static inline void sca_rx_intr(port_t *port)
pkt_desc __iomem *desc; pkt_desc __iomem *desc;
u32 cda = sca_inw(dmac + CDAL, card); u32 cda = sca_inw(dmac + CDAL, card);
if ((cda >= desc_off) && (cda < desc_off + sizeof(pkt_desc))) if (cda >= desc_off && (cda < desc_off + sizeof(pkt_desc)))
break; /* No frame received */ break; /* No frame received */
desc = desc_address(port, port->rxin, 0); desc = desc_address(port, port->rxin, 0);
...@@ -354,7 +354,7 @@ static inline void sca_tx_intr(port_t *port) ...@@ -354,7 +354,7 @@ static inline void sca_tx_intr(port_t *port)
u32 desc_off = desc_offset(port, port->txlast, 1); u32 desc_off = desc_offset(port, port->txlast, 1);
u32 cda = sca_inw(dmac + CDAL, card); u32 cda = sca_inw(dmac + CDAL, card);
if ((cda >= desc_off) && (cda < desc_off + sizeof(pkt_desc))) if (cda >= desc_off && (cda < desc_off + sizeof(pkt_desc)))
break; /* Transmitter is/will_be sending this frame */ break; /* Transmitter is/will_be sending this frame */
desc = desc_address(port, port->txlast, 1); desc = desc_address(port, port->txlast, 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment