From owner-p4-projects@FreeBSD.ORG Thu Nov 4 22:49:59 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id E852516A4DE; Thu, 4 Nov 2004 22:49:56 +0000 (GMT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 680A116A51D for ; Thu, 4 Nov 2004 22:49:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F85343D1F for ; Thu, 4 Nov 2004 22:49:55 +0000 (GMT) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id iA4MntjO042556 for ; Thu, 4 Nov 2004 22:49:55 GMT (envelope-from sam@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id iA4Mns1C042553 for perforce@freebsd.org; Thu, 4 Nov 2004 22:49:54 GMT (envelope-from sam@freebsd.org) Date: Thu, 4 Nov 2004 22:49:54 GMT Message-Id: <200411042249.iA4Mns1C042553@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to sam@freebsd.org using -f From: Sam Leffler To: Perforce Change Reviews Subject: PERFORCE change 64268 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2004 22:49:59 -0000 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