From patchwork Sat Sep 18 01:06:19 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vipin Mehta X-Patchwork-Id: 189462 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o8I16gqj023218 for ; Sat, 18 Sep 2010 01:06:42 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754397Ab0IRBGZ (ORCPT ); Fri, 17 Sep 2010 21:06:25 -0400 Received: from mail.atheros.com ([12.19.149.2]:30759 "EHLO mail.atheros.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754355Ab0IRBGY (ORCPT ); Fri, 17 Sep 2010 21:06:24 -0400 Received: from mail.atheros.com ([10.10.20.105]) by sidewinder.atheros.com for ; Fri, 17 Sep 2010 18:06:18 -0700 Received: from smtp.atheros.com (10.10.16.187) by SC1EXHC-01.global.atheros.com (10.10.20.106) with Microsoft SMTP Server (TLS) id 8.2.213.0; Fri, 17 Sep 2010 18:06:22 -0700 Received: by smtp.atheros.com (sSMTP sendmail emulation); Fri, 17 Sep 2010 18:06:21 -0700 From: Vipin Mehta To: CC: , , , , Subject: [PATCH] staging: ath6kl: Fixing a compile error Date: Fri, 17 Sep 2010 18:06:19 -0700 Message-ID: <1284771979-13249-1-git-send-email-vmehta@atheros.com> X-Mailer: git-send-email 1.6.3.3 MIME-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Sat, 18 Sep 2010 01:06:42 +0000 (UTC) diff --git a/drivers/staging/ath6kl/wmi/wmi.c b/drivers/staging/ath6kl/wmi/wmi.c index 9811ce7..23ae5d2 100644 --- a/drivers/staging/ath6kl/wmi/wmi.c +++ b/drivers/staging/ath6kl/wmi/wmi.c @@ -1458,7 +1458,7 @@ wmi_bssInfo_event_rx(struct wmi_t *wmip, A_UINT8 *datap, int len) A_DPRINTF(DBG_WMI2, (DBGFMT "bssInfo event - ch %u, rssi %02x, " "bssid \"%pM\"\n", DBGARG, bih->channel, - (unsigned char) bih->rssi, i&bih->bssid[0])); + (unsigned char) bih->rssi, &bih->bssid[0])); if(wps_enable && (bih->frameType == PROBERESP_FTYPE) ) { wmi_node_return(wmip, bss);