The patch titled
CRISv10 Ethernet declare mac fix
has been removed from the -mm tree. Its filename was
crisv10-ethernet-declare-mac-fix.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: CRISv10 Ethernet declare mac fix
From: Jesper Nilsson <[EMAIL PROTECTED]>
Declare mac using DECLARE_MAC_BUF for use when calling print_mac().
This fixes compile error where mac was undeclared.
Also, remove unused variable i.
Signed-off-by: Jesper Nilsson <[EMAIL PROTECTED]>
Cc: Mikael Starvik <[EMAIL PROTECTED]>
Cc: Jeff Garzik <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/net/cris/eth_v10.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN drivers/net/cris/eth_v10.c~crisv10-ethernet-declare-mac-fix
drivers/net/cris/eth_v10.c
--- a/drivers/net/cris/eth_v10.c~crisv10-ethernet-declare-mac-fix
+++ a/drivers/net/cris/eth_v10.c
@@ -630,7 +630,7 @@ e100_set_mac_address(struct net_device *
{
struct net_local *np = netdev_priv(dev);
struct sockaddr *addr = p;
- int i;
+ DECLARE_MAC_BUF(mac);
spin_lock(&np->lock); /* preemption protection */
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
cris-build-fixes-atomich-needs-compilerh.patch
git-mtd.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html