Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Nov 2004 22:49:54 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 64268 for review
Message-ID:  <200411042249.iA4Mns1C042553@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help

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

Change 64268 by sam@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



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