Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 May 2009 18:23:55 +0000 (UTC)
From:      Sam Leffler <sam@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r193104 - head/sys/arm/xscale/ixp425
Message-ID:  <200905301823.n4UINt5a015349@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sam
Date: Sat May 30 18:23:55 2009
New Revision: 193104
URL: http://svn.freebsd.org/changeset/base/193104

Log:
  maintain existing style

Modified:
  head/sys/arm/xscale/ixp425/if_npe.c

Modified: head/sys/arm/xscale/ixp425/if_npe.c
==============================================================================
--- head/sys/arm/xscale/ixp425/if_npe.c	Sat May 30 17:56:19 2009	(r193103)
+++ head/sys/arm/xscale/ixp425/if_npe.c	Sat May 30 18:23:55 2009	(r193104)
@@ -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_cm
 		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 */
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905301823.n4UINt5a015349>