summaryrefslogtreecommitdiffstats
path: root/sys/dev/re
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/re')
-rw-r--r--sys/dev/re/if_re.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/re/if_re.c b/sys/dev/re/if_re.c
index d32de16..0f8baa9 100644
--- a/sys/dev/re/if_re.c
+++ b/sys/dev/re/if_re.c
@@ -2020,9 +2020,9 @@ re_rxeof(struct rl_softc *sc, int *rx_npktsp)
if (rx_npktsp != NULL)
*rx_npktsp = rx_npkts;
if (maxpkt)
- return(EAGAIN);
+ return (EAGAIN);
- return(0);
+ return (0);
}
static void
@@ -2839,7 +2839,7 @@ re_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
if (ifr->ifr_reqcap & IFCAP_POLLING) {
error = ether_poll_register(re_poll, ifp);
if (error)
- return(error);
+ return (error);
RL_LOCK(sc);
/* Disable interrupts */
CSR_WRITE_2(sc, RL_IMR, 0x0000);
OpenPOWER on IntegriCloud