diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2017-02-04 19:21:00 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2017-02-04 19:21:00 +0000 |
commit | 8eea350c44f6177b2770181901dd896341864de2 (patch) | |
tree | 13e25c2a55f2eb8a3bca195e4dff741033dc8884 /sys | |
parent | 101aefe7c6c79f0dac440b0a7086dbc7cfbac6d0 (diff) |
Prefer <sys/endian.h> to <machine/endian.h>
ok stsp@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_iwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwm.c b/sys/dev/pci/if_iwm.c index f73c71f1e12..21ace7310a4 100644 --- a/sys/dev/pci/if_iwm.c +++ b/sys/dev/pci/if_iwm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwm.c,v 1.161 2017/02/04 15:02:46 pirofti Exp $ */ +/* $OpenBSD: if_iwm.c,v 1.162 2017/02/04 19:20:59 guenther Exp $ */ /* * Copyright (c) 2014, 2016 genua gmbh <info@genua.de> @@ -118,10 +118,10 @@ #include <sys/socket.h> #include <sys/sockio.h> #include <sys/systm.h> +#include <sys/endian.h> #include <sys/task.h> #include <machine/bus.h> -#include <machine/endian.h> #include <machine/intr.h> #include <dev/pci/pcireg.h> |