From owner-svn-src-all@FreeBSD.ORG Tue Aug 9 04:24:57 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 240191065673; Tue, 9 Aug 2011 04:24:57 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 132E88FC12; Tue, 9 Aug 2011 04:24:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p794Ouex076685; Tue, 9 Aug 2011 04:24:56 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p794OufP076683; Tue, 9 Aug 2011 04:24:56 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201108090424.p794OufP076683@svn.freebsd.org> From: Adrian Chadd Date: Tue, 9 Aug 2011 04:24:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r224724 - head/sys/dev/ath X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Aug 2011 04:24:57 -0000 Author: adrian Date: Tue Aug 9 04:24:56 2011 New Revision: 224724 URL: http://svn.freebsd.org/changeset/base/224724 Log: Remove this call, now that I've solved the radar module problem without needing this particular modification. It can be called during ath_dfs_radar_enable() and still achieve the same functionality, so I am. Approved by: re (kib, blanket) Modified: head/sys/dev/ath/if_ath.c Modified: head/sys/dev/ath/if_ath.c ============================================================================== --- head/sys/dev/ath/if_ath.c Mon Aug 8 22:16:07 2011 (r224723) +++ head/sys/dev/ath/if_ath.c Tue Aug 9 04:24:56 2011 (r224724) @@ -5032,12 +5032,6 @@ ath_setregdomain(struct ieee80211com *ic return EINVAL; /* XXX */ } - /* - * Setting country code might change the DFS domain - * so initialize the DFS Radar filters - */ - ath_dfs_init_radar_filters(sc); - return 0; }