PERFORCE change 64268 for review

Sam Leffler sam at FreeBSD.org
Thu Nov 4 14:49:59 PST 2004


http://perforce.freebsd.org/chv.cgi?CH=64268

Change 64268 by sam at sam_ebb on 2004/11/04 22:48:54

	whitespace fix

Affected files ...

.. //depot/projects/wifi/sys/dev/ath/if_ath.c#7 edit

Differences ...

==== //depot/projects/wifi/sys/dev/ath/if_ath.c#7 (text+ko) ====

@@ -3873,7 +3873,7 @@
 	error = sysctl_handle_int(oidp, &slottime, 0, req);
 	if (error || !req->newptr)
 		return error;
-	return !ath_hal_setslottime(sc->sc_ah, slottime)? EINVAL : 0;
+	return !ath_hal_setslottime(sc->sc_ah, slottime) ? EINVAL : 0;
 }
 
 static int
@@ -3886,7 +3886,7 @@
 	error = sysctl_handle_int(oidp, &acktimeout, 0, req);
 	if (error || !req->newptr)
 		return error;
-	return !ath_hal_setacktimeout(sc->sc_ah, acktimeout)? EINVAL : 0;
+	return !ath_hal_setacktimeout(sc->sc_ah, acktimeout) ? EINVAL : 0;
 }
 
 static int
@@ -3899,7 +3899,7 @@
 	error = sysctl_handle_int(oidp, &ctstimeout, 0, req);
 	if (error || !req->newptr)
 		return error;
-	return !ath_hal_setctstimeout(sc->sc_ah, ctstimeout)? EINVAL : 0;
+	return !ath_hal_setctstimeout(sc->sc_ah, ctstimeout) ? EINVAL : 0;
 }
 
 static int
@@ -3947,7 +3947,7 @@
 	if (error || !req->newptr)
 		return error;
 	sc->sc_diversity = diversity;
-	return !ath_hal_setdiversity(sc->sc_ah, diversity)? EINVAL : 0;
+	return !ath_hal_setdiversity(sc->sc_ah, diversity) ? EINVAL : 0;
 }
 
 static void


More information about the p4-projects mailing list