svn commit: r214842 - head/sys/dev/re

Pyun YongHyeon yongari at FreeBSD.org
Fri Nov 5 18:24:50 UTC 2010


Author: yongari
Date: Fri Nov  5 18:24:50 2010
New Revision: 214842
URL: http://svn.freebsd.org/changeset/base/214842

Log:
  style(9).

Modified:
  head/sys/dev/re/if_re.c

Modified: head/sys/dev/re/if_re.c
==============================================================================
--- head/sys/dev/re/if_re.c	Fri Nov  5 18:23:43 2010	(r214841)
+++ head/sys/dev/re/if_re.c	Fri Nov  5 18:24:50 2010	(r214842)
@@ -2020,9 +2020,9 @@ re_rxeof(struct rl_softc *sc, int *rx_np
 	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 comma
 			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);


More information about the svn-src-all mailing list