From 06ecfb379a36c3f536d817d6cb062dab969db1d6 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Sat, 30 May 2009 18:23:55 +0000 Subject: [PATCH] maintain existing style --- sys/arm/xscale/ixp425/if_npe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arm/xscale/ixp425/if_npe.c b/sys/arm/xscale/ixp425/if_npe.c index 3d174e78d16..b54526ce5f2 100644 --- a/sys/arm/xscale/ixp425/if_npe.c +++ b/sys/arm/xscale/ixp425/if_npe.c @@ -1145,7 +1145,7 @@ npe_rxdone(int qid, void *arg) /* XXX should not happen */ } } - return (rx_npkts); + return rx_npkts; #undef P2V } @@ -1160,7 +1160,7 @@ npe_poll(struct ifnet *ifp, enum poll_cmd cmd, int count) rx_npkts = npe_rxdone(sc->rx_qid, sc); npe_txdone(sc->tx_doneqid, sc); /* XXX polls both NPE's */ } - return (rx_npkts); + return rx_npkts; } #endif /* DEVICE_POLLING */