From patchwork Mon Oct 5 17:37:01 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 51760 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 n95Hj5gZ006407 for ; Mon, 5 Oct 2009 17:45:05 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754168AbZJERhm (ORCPT ); Mon, 5 Oct 2009 13:37:42 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754164AbZJERhm (ORCPT ); Mon, 5 Oct 2009 13:37:42 -0400 Received: from g4t0017.houston.hp.com ([15.201.24.20]:31219 "EHLO g4t0017.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754066AbZJERhl (ORCPT ); Mon, 5 Oct 2009 13:37:41 -0400 Received: from g5t0030.atlanta.hp.com (g5t0030.atlanta.hp.com [16.228.8.142]) by g4t0017.houston.hp.com (Postfix) with ESMTP id 2F3D8381DE; Mon, 5 Oct 2009 17:37:02 +0000 (UTC) Received: from ldl (linux.corp.hp.com [15.11.146.101]) by g5t0030.atlanta.hp.com (Postfix) with ESMTP id 9C47E2407C; Mon, 5 Oct 2009 17:37:01 +0000 (UTC) Received: from localhost (ldl.fc.hp.com [127.0.0.1]) by ldl (Postfix) with ESMTP id 5D04FCF001A; Mon, 5 Oct 2009 11:37:01 -0600 (MDT) Received: from ldl ([127.0.0.1]) by localhost (ldl.fc.hp.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YTh-ot9KE7QB; Mon, 5 Oct 2009 11:37:01 -0600 (MDT) Received: from eh.fc.hp.com (eh.fc.hp.com [15.11.146.105]) by ldl (Postfix) with ESMTP id 48AB8CF0019; Mon, 5 Oct 2009 11:37:01 -0600 (MDT) Received: from bob.kio (localhost [127.0.0.1]) by eh.fc.hp.com (Postfix) with ESMTP id 3F87526142; Mon, 5 Oct 2009 11:37:01 -0600 (MDT) Subject: [PATCH] iwlwifi: use %pM for formatted MAC addresses From: Bjorn Helgaas Cc: ilw@linux.intel.com, linux-wireless@vger.kernel.org Date: Mon, 05 Oct 2009 11:37:01 -0600 Message-ID: <20091005173701.28350.85734.stgit@bob.kio> User-Agent: StGit/0.14.3.386.gb02d MIME-Version: 1.0 To: unlisted-recipients:; (no To-header on input) 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/iwlwifi/iwl-3945-rs.c b/drivers/net/wireless/iwlwifi/iwl-3945-rs.c index a16bd41..cbb0585 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945-rs.c +++ b/drivers/net/wireless/iwlwifi/iwl-3945-rs.c @@ -702,7 +702,7 @@ static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, u8 sta_id = iwl_find_station(priv, hdr->addr1); if (sta_id == IWL_INVALID_STATION) { - IWL_DEBUG_RATE(priv, "LQ: ADD station %pm\n", + IWL_DEBUG_RATE(priv, "LQ: ADD station %pM\n", hdr->addr1); sta_id = iwl_add_station(priv, hdr->addr1, false, CMD_ASYNC, NULL);