diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-12-19 22:45:00 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-12-19 22:45:00 +0000 |
commit | 88183c175a3a1ea97d7a2129f42fe9c7a3ef99d6 (patch) | |
tree | 3c6584c4f92faaac23cf587c56e739c225ecf976 /sys/dev/pci/if_rtw_pci.c | |
parent | 5723639e3ccaa5b214ebe31dcdce31ba1cbf6bef (diff) |
Use <sys/endian.h> instead of <machine/endian.h>
ok dlg@ mpi@ bcook@ millert@ miod@
Diffstat (limited to 'sys/dev/pci/if_rtw_pci.c')
-rw-r--r-- | sys/dev/pci/if_rtw_pci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/if_rtw_pci.c b/sys/dev/pci/if_rtw_pci.c index aafad4db5b2..7d787a1d49e 100644 --- a/sys/dev/pci/if_rtw_pci.c +++ b/sys/dev/pci/if_rtw_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rtw_pci.c,v 1.17 2012/12/05 23:20:20 deraadt Exp $ */ +/* $OpenBSD: if_rtw_pci.c,v 1.18 2014/12/19 22:44:58 guenther Exp $ */ /* $NetBSD: if_rtw_pci.c,v 1.1 2004/09/26 02:33:36 dyoung Exp $ */ /*- @@ -48,8 +48,7 @@ #include <sys/ioctl.h> #include <sys/errno.h> #include <sys/device.h> - -#include <machine/endian.h> +#include <sys/endian.h> #include <net/if.h> #include <net/if_dl.h> |