Module Name: src
Committed By: ozaki-r
Date: Fri Jan 22 06:34:59 UTC 2016
Modified Files:
src/sys/dev/ic: midway.c
Log Message:
Don't call atm_input directly
This should be the last one that was survived ifp->if_input replacements.
No functional change.
To generate a diff of this commit:
cvs rdiff -u -r1.94 -r1.95 src/sys/dev/ic/midway.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/ic/midway.c
diff -u src/sys/dev/ic/midway.c:1.94 src/sys/dev/ic/midway.c:1.95
--- src/sys/dev/ic/midway.c:1.94 Tue Mar 13 18:40:31 2012
+++ src/sys/dev/ic/midway.c Fri Jan 22 06:34:59 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: midway.c,v 1.94 2012/03/13 18:40:31 elad Exp $ */
+/* $NetBSD: midway.c,v 1.95 2016/01/22 06:34:59 ozaki-r Exp $ */
/* (sync'd to midway.c 1.68) */
/*
@@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: midway.c,v 1.94 2012/03/13 18:40:31 elad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: midway.c,v 1.95 2016/01/22 06:34:59 ozaki-r Exp $");
#include "opt_natm.h"
@@ -2768,7 +2768,7 @@ EN_INTR_TYPE en_intr(void *arg)
bpf_mtap(ifp, m);
- atm_input(ifp, &ah, m, sc->rxslot[slot].rxhand);
+ ifp->if_input(ifp, &ah, m, sc->rxslot[slot].rxhand);
}
}