Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic Don't call atm_input directly
details: https://anonhg.NetBSD.org/src/rev/a2dd7e8a6d56
branches: trunk
changeset: 343069:a2dd7e8a6d56
user: ozaki-r <ozaki-r%NetBSD.org@localhost>
date: Fri Jan 22 06:34:59 2016 +0000
description:
Don't call atm_input directly
This should be the last one that was survived ifp->if_input replacements.
No functional change.
diffstat:
sys/dev/ic/midway.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r aa8f123d6ea4 -r a2dd7e8a6d56 sys/dev/ic/midway.c
--- a/sys/dev/ic/midway.c Fri Jan 22 05:15:10 2016 +0000
+++ b/sys/dev/ic/midway.c Fri Jan 22 06:34:59 2016 +0000
@@ -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 @@
bpf_mtap(ifp, m);
- atm_input(ifp, &ah, m, sc->rxslot[slot].rxhand);
+ ifp->if_input(ifp, &ah, m, sc->rxslot[slot].rxhand);
}
}
Home |
Main Index |
Thread Index |
Old Index