diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-05-21 05:18:57 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-05-21 05:18:57 +0000 |
commit | c5a35e5e8fca2938e5df4defb2374aed13f6c09a (patch) | |
tree | 4686ecc296a2093a142144e822a57b672e756d51 /sys/dev/usb/if_axe.c | |
parent | 8ca80fb5615b4b5b6210bd6c5b1cfc92546a046f (diff) |
Remove Ether_ifattach macro
Diffstat (limited to 'sys/dev/usb/if_axe.c')
-rw-r--r-- | sys/dev/usb/if_axe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_axe.c b/sys/dev/usb/if_axe.c index 132c9a955a4..ff4de91988c 100644 --- a/sys/dev/usb/if_axe.c +++ b/sys/dev/usb/if_axe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_axe.c,v 1.66 2007/05/14 00:46:21 jsg Exp $ */ +/* $OpenBSD: if_axe.c,v 1.67 2007/05/21 05:18:56 jsg Exp $ */ /* * Copyright (c) 2005, 2006, 2007 Jonathan Gray <jsg@openbsd.org> @@ -709,7 +709,7 @@ USB_ATTACH(axe) /* Attach the interface. */ if_attach(ifp); - Ether_ifattach(ifp, eaddr); + ether_ifattach(ifp); usb_callout_init(sc->axe_stat_ch); |