From patchwork Thu Sep 17 00:07:38 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: 33752 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 199BEB7B72 for ; Thu, 17 Sep 2009 10:09:19 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751068AbZIQAJJ (ORCPT ); Wed, 16 Sep 2009 20:09:09 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750941AbZIQAJI (ORCPT ); Wed, 16 Sep 2009 20:09:08 -0400 Received: from 30.mail-out.ovh.net ([213.186.62.213]:58169 "HELO 30.mail-out.ovh.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1750788AbZIQAJG (ORCPT ); Wed, 16 Sep 2009 20:09:06 -0400 Received: (qmail 13629 invoked by uid 503); 17 Sep 2009 00:09:17 -0000 Received: from b7.ovh.net (HELO mail439.ha.ovh.net) (213.186.33.57) by 30.mail-out.ovh.net with SMTP; 17 Sep 2009 00:09:17 -0000 Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 17 Sep 2009 00:09:10 -0000 Received: from ns24789.ovh.net (HELO localhost) (plagnioj%jcrosoft.com@91.121.24.14) by ns0.ovh.net with SMTP; 17 Sep 2009 00:09:10 -0000 From: Jean-Christophe PLAGNIOL-VILLARD To: netdev@vger.kernel.org Cc: Jean-Christophe PLAGNIOL-VILLARD Subject: [PATCH 1/2] wl12xx: switch to %pM to print the mac address Date: Thu, 17 Sep 2009 02:07:38 +0200 Message-Id: <1253146059-4169-1-git-send-email-plagnioj@jcrosoft.com> X-Mailer: git-send-email 1.6.4 X-Ovh-Tracer-Id: 9089952899157502880 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 | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c index d9169b4..f6f8895 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)); + printf("%pM", conf->bssid); wl1271_dump_ascii(DEBUG_MAC80211, "ssid: ", conf->ssid, conf->ssid_len);