From owner-cvs-all@FreeBSD.ORG Sat Jun 30 21:39:22 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 665DE16A469; Sat, 30 Jun 2007 21:39:22 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 56E4613C4B0; Sat, 30 Jun 2007 21:39:22 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5ULdMYi096528; Sat, 30 Jun 2007 21:39:22 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5ULdLP7096527; Sat, 30 Jun 2007 21:39:21 GMT (envelope-from thompsa) Message-Id: <200706302139.l5ULdLP7096527@repoman.freebsd.org> From: Andrew Thompson Date: Sat, 30 Jun 2007 21:39:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/wi if_wi.c src/sys/net80211 ieee80211_scan.c ieee80211_scan.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Jun 2007 21:39:22 -0000 thompsa 2007-06-30 21:39:21 UTC FreeBSD src repository Modified files: sys/dev/wi if_wi.c sys/net80211 ieee80211_scan.c ieee80211_scan.h Log: Fix scanning issues since the new net80211 code went in - provide dummy routines for ic_scan_curchan and ic_scan_mindwell, we do not support those operations. - add ieee80211_scan_done() to tell the scanning module that all channels have been scanned. - pass IEEE80211_S_SCAN state off to net80211 so it can initiate scanning - fix overflow in the rates array - scale the rate value passed back from the firmware scan to the units that net80211 uses. Submitted by: Token Reviewed by: sam, avatar Approved by: re (kensmith) Revision Changes Path 1.210 +27 -10 src/sys/dev/wi/if_wi.c 1.3 +13 -10 src/sys/net80211/ieee80211_scan.c 1.3 +1 -0 src/sys/net80211/ieee80211_scan.h