From owner-svn-src-all@FreeBSD.ORG Sat May 30 18:23:56 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F97D1065674; Sat, 30 May 2009 18:23:56 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1DAE68FC1A; Sat, 30 May 2009 18:23:56 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4UINtE2015350; Sat, 30 May 2009 18:23:55 GMT (envelope-from sam@svn.freebsd.org) Received: (from sam@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4UINt5a015349; Sat, 30 May 2009 18:23:55 GMT (envelope-from sam@svn.freebsd.org) Message-Id: <200905301823.n4UINt5a015349@svn.freebsd.org> From: Sam Leffler Date: Sat, 30 May 2009 18:23:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r193104 - head/sys/arm/xscale/ixp425 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 May 2009 18:23:56 -0000 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 */