Return-path: Received: from mail-ww0-f44.google.com ([74.125.82.44]:39351 "EHLO mail-ww0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751727Ab1GTPAW convert rfc822-to-8bit (ORCPT ); Wed, 20 Jul 2011 11:00:22 -0400 MIME-Version: 1.0 In-Reply-To: References: Date: Wed, 20 Jul 2011 20:30:21 +0530 Message-ID: (sfid-20110720_170048_032284_6B971373) Subject: Re: [PATCH 2/3] wireless: ath9k: use %pM to print MAC From: Mohammed Shafi To: Andy Shevchenko Cc: linux-wireless@vger.kernel.org, netdev@vger.kernel.org, "John W. Linville" , linux-kernel@vger.kernel.org, "Luis R. Rodriguez" , ath9k-devel@lists.ath9k.org Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-wireless-owner@vger.kernel.org List-ID: On Wed, Jul 20, 2011 at 7:04 PM, Andy Shevchenko wrote: > Signed-off-by: Andy Shevchenko > Cc: "Luis R. Rodriguez" > Cc: ath9k-devel@lists.ath9k.org > --- > ?drivers/net/wireless/ath/ath9k/htc_drv_debug.c | ? ?7 ++----- > ?1 files changed, 2 insertions(+), 5 deletions(-) > > diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_debug.c b/drivers/net/wireless/ath/ath9k/htc_drv_debug.c > index aa48b3a..d3ff33c 100644 > --- a/drivers/net/wireless/ath/ath9k/htc_drv_debug.c > +++ b/drivers/net/wireless/ath/ath9k/htc_drv_debug.c > @@ -623,11 +623,8 @@ static ssize_t read_file_base_eeprom(struct file *file, char __user *user_buf, > ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?pBase9287->openLoopPwrCntl); > ? ? ? ?} > > - ? ? ? len += snprintf(buf + len, size - len, > - ? ? ? ? ? ? ? ? ? ? ? "%20s : %02X:%02X:%02X:%02X:%02X:%02X\n", > - ? ? ? ? ? ? ? ? ? ? ? "MacAddress", > - ? ? ? ? ? ? ? ? ? ? ? pBase->macAddr[0], pBase->macAddr[1], pBase->macAddr[2], > - ? ? ? ? ? ? ? ? ? ? ? pBase->macAddr[3], pBase->macAddr[4], pBase->macAddr[5]); > + ? ? ? len += snprintf(buf + len, size - len, "%20s : %pM\n", "MacAddress", > + ? ? ? ? ? ? ? ? ? ? ? pBase->macAddr); > ? ? ? ?if (len > size) > ? ? ? ? ? ? ? ?len = size; thanks for the patch! > > -- > 1.7.5.4 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-wireless" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at ?http://vger.kernel.org/majordomo-info.html > -- shafi