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_rtwn.c | |
parent | 5722c9ff9739e866a4937ee9a2dd5a8600ee53cf (diff) |
remove unneeded includes; ok miod@
Diffstat (limited to 'sys/dev/pci/if_rtwn.c')
-rw-r--r-- | sys/dev/pci/if_rtwn.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/dev/pci/if_rtwn.c b/sys/dev/pci/if_rtwn.c index 121b5a3cd8c..57bd34ebdea 100644 --- a/sys/dev/pci/if_rtwn.c +++ b/sys/dev/pci/if_rtwn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rtwn.c,v 1.41 2023/07/14 14:28:47 kevlo Exp $ */ +/* $OpenBSD: if_rtwn.c,v 1.42 2024/05/24 06:02:56 jsg Exp $ */ /*- * Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr> @@ -25,14 +25,10 @@ #include "bpfilter.h" #include <sys/param.h> -#include <sys/sockio.h> #include <sys/mbuf.h> -#include <sys/kernel.h> #include <sys/socket.h> #include <sys/systm.h> -#include <sys/task.h> #include <sys/timeout.h> -#include <sys/conf.h> #include <sys/device.h> #include <sys/endian.h> @@ -43,7 +39,6 @@ #include <net/bpf.h> #endif #include <net/if.h> -#include <net/if_dl.h> #include <net/if_media.h> #include <netinet/in.h> |