Module Name:    src
Committed By:   jakllsch
Date:           Tue Dec  8 20:38:16 UTC 2009

Modified Files:
        src/sys/dev/usb: if_aue.c

Log Message:
It's not an error for a Ethernet interface to have a link-layer address.

hi cube


To generate a diff of this commit:
cvs rdiff -u -r1.116 -r1.117 src/sys/dev/usb/if_aue.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/if_aue.c
diff -u src/sys/dev/usb/if_aue.c:1.116 src/sys/dev/usb/if_aue.c:1.117
--- src/sys/dev/usb/if_aue.c:1.116	Sun Dec  6 20:20:12 2009
+++ src/sys/dev/usb/if_aue.c	Tue Dec  8 20:38:16 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_aue.c,v 1.116 2009/12/06 20:20:12 dyoung Exp $	*/
+/*	$NetBSD: if_aue.c,v 1.117 2009/12/08 20:38:16 jakllsch Exp $	*/
 /*
  * Copyright (c) 1997, 1998, 1999, 2000
  *	Bill Paul <[email protected]>.  All rights reserved.
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_aue.c,v 1.116 2009/12/06 20:20:12 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_aue.c,v 1.117 2009/12/08 20:38:16 jakllsch Exp $");
 
 #include "opt_inet.h"
 #include "bpfilter.h"
@@ -829,7 +829,7 @@
 	 * A Pegasus chip was detected. Inform the world.
 	 */
 	ifp = GET_IFP(sc);
-	aprint_error_dev(self, "Ethernet address %s\n", ether_sprintf(eaddr));
+	aprint_normal_dev(self, "Ethernet address %s\n", ether_sprintf(eaddr));
 
 	/* Initialize interface info.*/
 	ifp->if_softc = sc;

Reply via email to