From owner-p4-projects@FreeBSD.ORG Tue Feb 19 00:42:17 2008 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 60D8316A532; Tue, 19 Feb 2008 00:42:17 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D190F16A417 for ; Tue, 19 Feb 2008 00:42:16 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C79C613C467 for ; Tue, 19 Feb 2008 00:42:16 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1J0gGSt008560 for ; Tue, 19 Feb 2008 00:42:16 GMT (envelope-from sam@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1J0gGKT008557 for perforce@freebsd.org; Tue, 19 Feb 2008 00:42:16 GMT (envelope-from sam@freebsd.org) Date: Tue, 19 Feb 2008 00:42:16 GMT Message-Id: <200802190042.m1J0gGKT008557@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 Cc: Subject: PERFORCE change 135693 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 00:42:17 -0000 http://perforce.freebsd.org/chv.cgi?CH=135693 Change 135693 by sam@sam_ebb on 2008/02/19 00:41:45 track iv_reset api change Affected files ... .. //depot/projects/vap/sys/dev/ath/if_ath.c#23 edit Differences ... ==== //depot/projects/vap/sys/dev/ath/if_ath.c#23 (text+ko) ==== @@ -109,7 +109,7 @@ static void ath_stop(struct ifnet *); static void ath_start(struct ifnet *); static int ath_reset(struct ifnet *); -static int ath_reset_vap(struct ieee80211vap *); +static int ath_reset_vap(struct ieee80211vap *, u_long); static int ath_media_change(struct ifnet *); static void ath_watchdog(struct ifnet *); static int ath_ioctl(struct ifnet *, u_long, caddr_t); @@ -1243,7 +1243,7 @@ } static int -ath_reset_vap(struct ieee80211vap *vap) +ath_reset_vap(struct ieee80211vap *vap, u_long cmd) { return ath_reset(vap->iv_ic->ic_ifp); }