diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-13 11:15:30 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-13 11:15:30 +0000 |
commit | 70eb0fa72cdc4c418f74a322d530ef64a2e8dd02 (patch) | |
tree | ff48cf3b1d381ce503c40598b090330a6e418629 /sys/dev/usb/if_aue.c | |
parent | 20ffef31001893092476c4821fbf5cc249ed88c5 (diff) |
Remove the definition and usage of the IF_INPUT macro which was defined
as ether_input_mbuf which is itself a macro for ether_input.
No binary change.
ok dlg.
Diffstat (limited to 'sys/dev/usb/if_aue.c')
-rw-r--r-- | sys/dev/usb/if_aue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_aue.c b/sys/dev/usb/if_aue.c index 56a792371c5..93f4c10a9b0 100644 --- a/sys/dev/usb/if_aue.c +++ b/sys/dev/usb/if_aue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_aue.c,v 1.63 2007/06/12 16:26:36 mbalmer Exp $ */ +/* $OpenBSD: if_aue.c,v 1.64 2007/06/13 11:15:29 mbalmer Exp $ */ /* $NetBSD: if_aue.c,v 1.82 2003/03/05 17:37:36 shiba Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000 @@ -1122,7 +1122,7 @@ aue_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status) DPRINTFN(10,("%s: %s: deliver %d\n", sc->aue_dev.dv_xname, __func__, m->m_len)); - IF_INPUT(ifp, m); + ether_input_mbuf(ifp, m); done1: splx(s); |