From patchwork Wed Oct 21 11:03:46 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luciano Coelho X-Patchwork-Id: 55068 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n9LB1qLX003057 for ; Wed, 21 Oct 2009 11:04:34 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753278AbZJULE3 (ORCPT ); Wed, 21 Oct 2009 07:04:29 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752693AbZJULE2 (ORCPT ); Wed, 21 Oct 2009 07:04:28 -0400 Received: from smtp.nokia.com ([192.100.122.233]:31415 "EHLO mgw-mx06.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751823AbZJULE2 (ORCPT ); Wed, 21 Oct 2009 07:04:28 -0400 Received: from esebh105.NOE.Nokia.com (esebh105.ntc.nokia.com [172.21.138.211]) by mgw-mx06.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n9LB49Ue019247; Wed, 21 Oct 2009 14:04:25 +0300 Received: from esebh102.NOE.Nokia.com ([172.21.138.183]) by esebh105.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 21 Oct 2009 14:03:50 +0300 Received: from mgw-sa02.ext.nokia.com ([147.243.1.48]) by esebh102.NOE.Nokia.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Wed, 21 Oct 2009 14:03:49 +0300 Received: from localhost.localdomain (pimenta.research.nokia.com [172.21.50.90]) by mgw-sa02.ext.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n9LB3l1I027866; Wed, 21 Oct 2009 14:03:48 +0300 From: Luciano Coelho To: linville@tuxdriver.com Cc: linux-wireless@vger.kernel.org, Kalle Valo Subject: [PATCH] wl1271: use ieee80211_rx_ni() Date: Wed, 21 Oct 2009 14:03:46 +0300 Message-Id: <1256123026-19963-1-git-send-email-luciano.coelho@nokia.com> X-Mailer: git-send-email 1.5.6.5 X-OriginalArrivalTime: 21 Oct 2009 11:03:49.0441 (UTC) FILETIME=[2AE26310:01CA523E] X-Nokia-AV: Clean Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org diff --git a/drivers/net/wireless/wl12xx/wl1271_rx.c b/drivers/net/wireless/wl12xx/wl1271_rx.c index dbf07be..37d81ab 100644 --- a/drivers/net/wireless/wl12xx/wl1271_rx.c +++ b/drivers/net/wireless/wl12xx/wl1271_rx.c @@ -184,7 +184,7 @@ static void wl1271_rx_handle_data(struct wl1271 *wl, u32 length) beacon ? "beacon" : ""); memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status)); - ieee80211_rx(wl->hw, skb); + ieee80211_rx_ni(wl->hw, skb); } void wl1271_rx(struct wl1271 *wl, struct wl1271_fw_status *status)