Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb It's not an error for a Ethernet interface to ha...



details:   https://anonhg.NetBSD.org/src/rev/f1ff95f28fc1
branches:  trunk
changeset: 749795:f1ff95f28fc1
user:      jakllsch <jakllsch%NetBSD.org@localhost>
date:      Tue Dec 08 20:38:16 2009 +0000

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

hi cube

diffstat:

 sys/dev/usb/if_aue.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 0b4dcdd8fae2 -r f1ff95f28fc1 sys/dev/usb/if_aue.c
--- a/sys/dev/usb/if_aue.c      Tue Dec 08 15:32:01 2009 +0000
+++ b/sys/dev/usb/if_aue.c      Tue Dec 08 20:38:16 2009 +0000
@@ -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 <wpaul%ee.columbia.edu@localhost>.  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;



Home | Main Index | Thread Index | Old Index