From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail.redfish-solutions.com ([66.232.79.143]:42780 "EHLO mail.redfish-solutions.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752704AbZGWU3y (ORCPT ); Thu, 23 Jul 2009 16:29:54 -0400 Message-ID: <4A68C821.7060208@redfish-solutions.com> Date: Thu, 23 Jul 2009 13:29:21 -0700 From: "Philip A. Prindeville" MIME-Version: 1.0 To: Bob Copeland CC: "Luis R. Rodriguez" , linux-wireless@vger.kernel.org Subject: Re: Using compat-wireless w/ 2.6.27.26 References: <4A612514.4050708@redfish-solutions.com> <4A635E04.4050204@redfish-solutions.com> <20090719203150.GA9972@hash.localnet> <4A63DF0B.4010801@redfish-solutions.com> <20090720115244.GC9972@hash.localnet> <4A64C283.6090205@redfish-solutions.com> <43e72e890907201247x7df76b75wf6ba2bc2260dbf7a@mail.gmail.com> <4A650331.9020409@redfish-solutions.com> <4A6620B9.4@redfish-solutions.com> <20090723112428.GC13742@hash.localnet> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-wireless-owner@vger.kernel.org List-ID: Bob Copeland wrote: > On Thu, Jul 23, 2009 at 7:24 AM, Bob Copeland wrote: >> - ath5k_tx_processq(sc, sc->txq); >> + for (i=0; i < AR5K_NUM_TX_QUEUES; i++) { >> + if (!sc->txqs[i].setup) >> + continue; >> + ath5k_tx_processq(sc, sc->txq); > > oops, should be: > > ath5k_tx_processq(sc, sc->txqs[i]); > >> + } >> } >> Getting closer :-) ath5k_tx_processq(sc, &sc->txqs[i]);