summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/if_url.c
diff options
context:
space:
mode:
authormbalmer <mbalmer@openbsd.org>2007-06-13 11:15:29 +0000
committermbalmer <mbalmer@openbsd.org>2007-06-13 11:15:29 +0000
commit881caed0a0661f4e93da4ba9ae39691e85bc4b72 (patch)
treec3f50933d00091a78fb0d8ac47a9094f491d407d /sys/dev/usb/if_url.c
parentRemove the definition and use of umass/umass_quirks related macros. (diff)
downloadwireguard-openbsd-881caed0a0661f4e93da4ba9ae39691e85bc4b72.tar.xz
wireguard-openbsd-881caed0a0661f4e93da4ba9ae39691e85bc4b72.zip
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_url.c')
-rw-r--r--sys/dev/usb/if_url.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_url.c b/sys/dev/usb/if_url.c
index c94e0bdc64c..447652fb82b 100644
--- a/sys/dev/usb/if_url.c
+++ b/sys/dev/usb/if_url.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_url.c,v 1.46 2007/06/12 16:26:36 mbalmer Exp $ */
+/* $OpenBSD: if_url.c,v 1.47 2007/06/13 11:15:29 mbalmer Exp $ */
/* $NetBSD: if_url.c,v 1.6 2002/09/29 10:19:21 martin Exp $ */
/*
* Copyright (c) 2001, 2002
@@ -1052,7 +1052,7 @@ url_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
DPRINTF(("%s: %s: deliver %d\n", sc->sc_dev.dv_xname,
__func__, m->m_len));
- IF_INPUT(ifp, m);
+ ether_input_mbuf(ifp, m);
done1:
splx(s);