diff options
author | jhb <jhb@FreeBSD.org> | 2000-09-15 19:09:15 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-09-15 19:09:15 +0000 |
commit | 3bfd6f0c5232169b11bae513654062f2a78dbf76 (patch) | |
tree | f0991c3b4958555514ece01d400275e1879e9819 /sys/dev/fe | |
parent | d98e9631e37ec17749beb571397c592b3f413d4d (diff) | |
download | FreeBSD-src-3bfd6f0c5232169b11bae513654062f2a78dbf76.zip FreeBSD-src-3bfd6f0c5232169b11bae513654062f2a78dbf76.tar.gz |
Use driver_intr_t instead of the now defunct inthand2_t.
Diffstat (limited to 'sys/dev/fe')
-rw-r--r-- | sys/dev/fe/if_fe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c index 7b16e6d..b80b229 100644 --- a/sys/dev/fe/if_fe.c +++ b/sys/dev/fe/if_fe.c @@ -145,7 +145,7 @@ static struct fe_filter const fe_filter_all = { FE_FILTER_ALL }; /* Standard driver entry points. These can be static. */ static void fe_init (void *); -static inthand2_t fe_intr; +static driver_intr_t fe_intr; static int fe_ioctl (struct ifnet *, u_long, caddr_t); static void fe_start (struct ifnet *); static void fe_watchdog (struct ifnet *); |