login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2010
»
August
»
26
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Stephen Hemminger
Subject:
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
Date: Thursday, August 26, 2010 - 8:43 am
On Thu, 26 Aug 2010 18:56:55 +0900 Masayuki Ohtake <masa-korg@dsn.okisemi.com> wrote:
quoted text
> 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. --
unsubscribe notice
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/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[PATCH] Gigabit Ethernet driver of Topcliff PCH
, Masayuki Ohtake
, (Thu Aug 26, 2:56 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Sam Ravnborg
, (Thu Aug 26, 3:28 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Masayuki Ohtake
, (Thu Aug 26, 5:47 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Joe Perches
, (Thu Aug 26, 7:44 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Aug 26, 8:40 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Aug 26, 8:41 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Aug 26, 8:42 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Aug 26, 8:43 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Aug 26, 8:45 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Aug 26, 8:47 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Aug 26, 8:57 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Aug 26, 9:05 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Joe Perches
, (Thu Aug 26, 9:16 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Aug 26, 9:29 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Joe Perches
, (Thu Aug 26, 10:02 am)
[PATCH] Gigabit Ethernet driver of Topcliff PCH
, Masayuki Ohtake
, (Tue Aug 31, 7:15 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Eric Dumazet
, (Tue Aug 31, 7:51 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Randy Dunlap
, (Tue Aug 31, 8:08 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Joe Perches
, (Tue Aug 31, 9:10 am)
[PATCH] drivers/net/pch_gbe: Use bool not unsigned char
, Joe Perches
, (Tue Aug 31, 10:25 am)
Re: [PATCH] drivers/net/pch_gbe: Cleanup stats use
, Joe Perches
, (Tue Aug 31, 11:38 am)
Re: [PATCH] drivers/net/pch_gbe: Cleanup stats use
, Stephen Hemminger
, (Tue Aug 31, 6:33 pm)
Re: [PATCH] drivers/net/pch_gbe: Cleanup stats use
, Joe Perches
, (Tue Aug 31, 6:38 pm)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Masayuki Ohtake
, (Thu Sep 2, 5:39 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Eric Dumazet
, (Thu Sep 2, 6:40 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Stephen Hemminger
, (Thu Sep 2, 8:10 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, FUJITA Tomonori
, (Thu Sep 2, 7:23 pm)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Masayuki Ohtake
, (Fri Sep 3, 6:32 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Eric Dumazet
, (Fri Sep 3, 6:43 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Masayuki Ohtake
, (Fri Sep 3, 7:11 am)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Masayuki Ohtake
, (Mon Sep 6, 6:13 pm)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, FUJITA Tomonori
, (Mon Sep 6, 8:21 pm)
Re: [PATCH] Gigabit Ethernet driver of Topcliff PCH
, Masayuki Ohtake
, (Mon Sep 6, 9:06 pm)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Greg Kroah-Hartman
[PATCH 041/196] kobject: add kobject_init_and_add function
Lukas Hejtmanek
Re: Another libata error related to OCZ SSD
Greg Kroah-Hartman
[PATCH 023/196] MCP_UCB1200: Convert from class_device to device
Florian Fainelli
Re: System clock runs too fast after 2.6.27 -> 2.6.28.1 upgrade
Christoph Lameter
[patch 1/4] mmu_notifier: Core code
git
:
Johannes Schindelin
Re: [PATCH 1/2] Add strbuf_initf()
John Bito
[EGIT] Push to GitHub caused corruption
Jakub Narebski
Re: [PATCH 0/2] gitweb: patch view
Junio C Hamano
Re: [PATCH] When a remote is added but not fetched, tell the user.
Andy Parkins
Re: [RFC] Submodules in GIT
git-commits-head
:
Linux Kernel Mailing List
ahci: Workaround HW bug for SB600/700 SATA controller PMP support
Linux Kernel Mailing List
V4L/DVB (11086): au0828: rename macro for currently non-function VBI support
Linux Kernel Mailing List
ceph: client types
Linux Kernel Mailing List
ceph: on-wire types
Linux Kernel Mailing List
crypto: chainiv - Use kcrypto_wq instead of keventd_wq
linux-netdev
:
Andrew Morton
Re: [Bugme-new] [Bug 14969] New: b44: WOL does not work in suspended state
Giuseppe CAVALLARO
Re: [PATCH 03/13] stmmac: add the new Header file for stmmac platform data
Taku Izumi
[PATCH 3/3] ixgbe: add registers etc. printout code just before resetting adapters
Eric Dumazet
rps: some comments
Thomas Gleixner
Re: [RFC PATCH 02/12] On Tue, 23 Sep 2008, David Miller wrote:
openbsd-misc
:
Stephan Andreas
problems with login after xlock in OpenBSD release 4.7
pmc
Make A Change. Alcoholism and Drug Addiction Treatment
ropers
Re: what exactly is enc0?
Fuad NAHDI
Re: What does your environment look like?
Matthew Szudzik
Typo on OpenBSD 4.4 CD Set
Colocation donated by:
Syndicate