From owner-svn-src-all@FreeBSD.ORG Tue Aug 9 15:46:53 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 4610B1065678; Tue, 9 Aug 2011 15:46:53 +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 3589E8FC20; Tue, 9 Aug 2011 15:46:53 +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 p79Fkrj3001957; Tue, 9 Aug 2011 15:46:53 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p79FkrIc001954; Tue, 9 Aug 2011 15:46:53 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201108091546.p79FkrIc001954@svn.freebsd.org> From: Adrian Chadd Date: Tue, 9 Aug 2011 15:46:53 +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: r224734 - in head/sys/dev/ath: . ath_dfs/null 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 15:46:53 -0000 Author: adrian Date: Tue Aug 9 15:46:52 2011 New Revision: 224734 URL: http://svn.freebsd.org/changeset/base/224734 Log: Remove the now unneeded references to these DFS methods. Sorry for the noise everyone. Approved by: re (kib, blanket) Modified: head/sys/dev/ath/ath_dfs/null/dfs_null.c head/sys/dev/ath/if_athdfs.h Modified: head/sys/dev/ath/ath_dfs/null/dfs_null.c ============================================================================== --- head/sys/dev/ath/ath_dfs/null/dfs_null.c Tue Aug 9 15:29:58 2011 (r224733) +++ head/sys/dev/ath/ath_dfs/null/dfs_null.c Tue Aug 9 15:46:52 2011 (r224734) @@ -226,13 +226,3 @@ ath_dfs_get_thresholds(struct ath_softc ath_hal_getdfsthresh(sc->sc_ah, param); return 1; } - -/* - * Update the current radar patterns based on the - * current operating mode/regulatory domain. - */ -int -ath_dfs_init_radar_filters(struct ath_softc *sc) -{ - return 1; -} Modified: head/sys/dev/ath/if_athdfs.h ============================================================================== --- head/sys/dev/ath/if_athdfs.h Tue Aug 9 15:29:58 2011 (r224733) +++ head/sys/dev/ath/if_athdfs.h Tue Aug 9 15:46:52 2011 (r224734) @@ -44,6 +44,5 @@ extern int ath_dfs_tasklet_needed(struct extern int ath_ioctl_phyerr(struct ath_softc *sc, struct ath_diag *ad); extern int ath_dfs_get_thresholds(struct ath_softc *sc, HAL_PHYERR_PARAM *param); -extern int ath_dfs_init_radar_filters(struct ath_softc *sc); #endif /* __IF_ATHDFS_H__ */