Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754190Ab0HZPnQ (ORCPT ); Thu, 26 Aug 2010 11:43:16 -0400 Received: from mail.vyatta.com ([76.74.103.46]:46210 "EHLO mail.vyatta.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753097Ab0HZPnO (ORCPT ); Thu, 26 Aug 2010 11:43:14 -0400 Date: Thu, 26 Aug 2010 08:43:12 -0700 From: Stephen Hemminger To: Masayuki Ohtake Cc: LKML , ML netdev , Greg Rose , Maxime Bizon , Kristoffer Glembo , Ralf Baechle , John Linn , Randy Dunlap , "David S. Miller" , MeeGo , "Wang, Qi" , "Wang, Yong Y" , Andrew , Intel OTC , "Foster, Margie" , Toshiharu Okada , Tomoya Morinaga , Takahiro Shimizu Subject: Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH Message-ID: <20100826084312.2b23048f@nehalam> In-Reply-To: <4C763A67.5040107@dsn.okisemi.com> References: <4C763A67.5040107@dsn.okisemi.com> Organization: Vyatta X-Mailer: Claws Mail 3.7.5 (GTK+ 2.20.1; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1080 Lines: 29 On Thu, 26 Aug 2010 18:56:55 +0900 Masayuki Ohtake wrote: > s32 pch_gbe_mac_read_mac_addr(struct pch_gbe_hw *hw) > +{ > + u32 adr1a, adr1b; > + > + PCH_GBE_DEBUG("pch_gbe_mac_read_mac_addr\n"); > + > + adr1a = ioread32(&hw->reg->mac_adr[0].high); > + adr1b = ioread32(&hw->reg->mac_adr[0].low); > + > + hw->mac.addr[0] = (u8)(adr1a & 0xFF); > + hw->mac.addr[1] = (u8)((adr1a >> 8) & 0xFF); > + hw->mac.addr[2] = (u8)((adr1a >> 16) & 0xFF); > + hw->mac.addr[3] = (u8)((adr1a >> 24) & 0xFF); > + hw->mac.addr[4] = (u8)(adr1b & 0xFF); > + hw->mac.addr[5] = (u8)((adr1b >> 8) & 0xFF); > + > + PCH_GBE_DEBUG("hw->mac.addr : 0x%02x %02x %02x %02x %02x %02x\n", > + hw->mac.addr[0], hw->mac.addr[1], hw->mac.addr[2], > + hw->mac.addr[3], hw->mac.addr[4], hw->mac.addr[5]); can use new %pM printk format here. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/