diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-24 06:02:59 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-24 06:02:59 +0000 |
commit | 48030f5214806f67ab1ca8e458d6db2d710fb8f7 (patch) | |
tree | 39bb9a71a8b65a67eebc467257da0ff49d4d02bc /sys/dev/pci/if_xl_pci.c | |
parent | 5722c9ff9739e866a4937ee9a2dd5a8600ee53cf (diff) |
remove unneeded includes; ok miod@
Diffstat (limited to 'sys/dev/pci/if_xl_pci.c')
-rw-r--r-- | sys/dev/pci/if_xl_pci.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/dev/pci/if_xl_pci.c b/sys/dev/pci/if_xl_pci.c index 963e1984c34..4a29dacd6d3 100644 --- a/sys/dev/pci/if_xl_pci.c +++ b/sys/dev/pci/if_xl_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_xl_pci.c,v 1.48 2022/03/11 18:00:50 mpi Exp $ */ +/* $OpenBSD: if_xl_pci.c,v 1.49 2024/05/24 06:02:57 jsg Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -34,16 +34,8 @@ * $FreeBSD: if_xl.c,v 1.72 2000/01/09 21:12:59 wpaul Exp $ */ -#include "bpfilter.h" - #include <sys/param.h> #include <sys/systm.h> -#include <sys/mbuf.h> -#include <sys/socket.h> -#include <sys/ioctl.h> -#include <sys/errno.h> -#include <sys/malloc.h> -#include <sys/kernel.h> #include <sys/device.h> #include <net/if.h> @@ -57,10 +49,6 @@ #include <dev/pci/pcivar.h> #include <dev/pci/pcidevs.h> -#if NBPFILTER > 0 -#include <net/bpf.h> -#endif - /* * The following #define causes the code to use PIO to access the * chip's registers instead of memory mapped mode. The reason PIO mode |