From patchwork Thu Sep 17 06:15:36 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jean-Christophe PLAGNIOL-VILLARD X-Patchwork-Id: 33758 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 8B2D6B7B73 for ; Thu, 17 Sep 2009 16:17:13 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754141AbZIQGRE (ORCPT ); Thu, 17 Sep 2009 02:17:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754051AbZIQGRD (ORCPT ); Thu, 17 Sep 2009 02:17:03 -0400 Received: from 30.mail-out.ovh.net ([213.186.62.213]:46193 "HELO 30.mail-out.ovh.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1754129AbZIQGRD (ORCPT ); Thu, 17 Sep 2009 02:17:03 -0400 Received: (qmail 13666 invoked by uid 503); 17 Sep 2009 06:17:13 -0000 Received: from b7.ovh.net (HELO mail437.ha.ovh.net) (213.186.33.57) by 30.mail-out.ovh.net with SMTP; 17 Sep 2009 06:17:13 -0000 Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 17 Sep 2009 06:17:07 -0000 Received: from ns24789.ovh.net (HELO localhost) (plagnioj%jcrosoft.com@91.121.24.14) by ns0.ovh.net with SMTP; 17 Sep 2009 06:17:05 -0000 From: Jean-Christophe PLAGNIOL-VILLARD To: netdev@vger.kernel.org Cc: Jean-Christophe PLAGNIOL-VILLARD Subject: [PATCH 1/2 v2] wl12xx: switch to %pM to print the mac address Date: Thu, 17 Sep 2009 08:15:36 +0200 Message-Id: <1253168136-4586-1-git-send-email-plagnioj@jcrosoft.com> X-Mailer: git-send-email 1.6.4 In-Reply-To: <1253146059-4169-1-git-send-email-plagnioj@jcrosoft.com> References: <1253146059-4169-1-git-send-email-plagnioj@jcrosoft.com> X-Ovh-Tracer-Id: 15303513009592904608 X-Ovh-Remote: 91.121.24.14 (ns24789.ovh.net) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-Spam-Check: DONE|U 0.5/N Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- drivers/net/wireless/wl12xx/wl1271_main.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) v2: Fix correctly diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c index d9169b4..27298b1 100644 --- a/drivers/net/wireless/wl12xx/wl1271_main.c +++ b/drivers/net/wireless/wl12xx/wl1271_main.c @@ -644,11 +644,10 @@ static int wl1271_op_config_interface(struct ieee80211_hw *hw, { struct wl1271 *wl = hw->priv; struct sk_buff *beacon; - DECLARE_MAC_BUF(mac); int ret; - wl1271_debug(DEBUG_MAC80211, "mac80211 config_interface bssid %s", - print_mac(mac, conf->bssid)); + wl1271_debug(DEBUG_MAC80211, "mac80211 config_interface bssid %pM", + conf->bssid); wl1271_dump_ascii(DEBUG_MAC80211, "ssid: ", conf->ssid, conf->ssid_len);