All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/4] r6040: generate random ethernet MAC address when not initialized
@ 2009-01-09  1:04 Florian Fainelli
  2009-01-10  7:07 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Florian Fainelli @ 2009-01-09  1:04 UTC (permalink / raw)
  To: David Miller, jeff, netdev

From: Florian Fainelli <florian@openwrt.org>
Subject: [PATCH 2/4] r6040: generate random ethernet MAC address when not initialized

This patch makes the ethernet driver assign a random ethernet
MAC address when the bootloader does not set it.

Signed-off-by: Florian Fainelli <florian@openwrt.org>
---
diff --git a/drivers/net/r6040.c b/drivers/net/r6040.c
index 6b8bc6d..21d830b 100644
--- a/drivers/net/r6040.c
+++ b/drivers/net/r6040.c
@@ -1138,8 +1138,10 @@ static int __devinit r6040_init_one(struct pci_dev *pdev,
 
 	/* Some bootloader/BIOSes do not initialize
 	 * MAC address, warn about that */
-	if (!(adrp[0] || adrp[1] || adrp[2]))
-		printk(KERN_WARNING DRV_NAME ": MAC address not initialized\n");
+	if (!(adrp[0] || adrp[1] || adrp[2])) {
+		printk(KERN_WARNING DRV_NAME ": MAC address not initialized, generating random\n");
+		random_ether_addr(dev->dev_addr);
+	}
 
 	/* Link new device into r6040_root_dev */
 	lp->pdev = pdev;

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 2/4] r6040: generate random ethernet MAC address when not initialized
  2009-01-09  1:04 [PATCH 2/4] r6040: generate random ethernet MAC address when not initialized Florian Fainelli
@ 2009-01-10  7:07 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2009-01-10  7:07 UTC (permalink / raw)
  To: florian; +Cc: jeff, netdev

From: Florian Fainelli <florian@openwrt.org>
Date: Fri, 9 Jan 2009 02:04:45 +0100

> From: Florian Fainelli <florian@openwrt.org>
> Subject: [PATCH 2/4] r6040: generate random ethernet MAC address when not initialized
> 
> This patch makes the ethernet driver assign a random ethernet
> MAC address when the bootloader does not set it.
> 
> Signed-off-by: Florian Fainelli <florian@openwrt.org>

Applied.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-01-10  7:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-01-09  1:04 [PATCH 2/4] r6040: generate random ethernet MAC address when not initialized Florian Fainelli
2009-01-10  7:07 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.