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/arch/octeon/dev | |
parent | 5723639e3ccaa5b214ebe31dcdce31ba1cbf6bef (diff) |
Use <sys/endian.h> instead of <machine/endian.h>
ok dlg@ mpi@ bcook@ millert@ miod@
Diffstat (limited to 'sys/arch/octeon/dev')
-rw-r--r-- | sys/arch/octeon/dev/if_cnmac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/octeon/dev/if_cnmac.c b/sys/arch/octeon/dev/if_cnmac.c index 8499da50afa..85f67700c6e 100644 --- a/sys/arch/octeon/dev/if_cnmac.c +++ b/sys/arch/octeon/dev/if_cnmac.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cnmac.c,v 1.19 2014/08/11 19:00:50 miod Exp $ */ +/* $OpenBSD: if_cnmac.c,v 1.20 2014/12/19 22:44:58 guenther Exp $ */ /* * Copyright (c) 2007 Internet Initiative Japan, Inc. @@ -49,6 +49,7 @@ #include <sys/stdint.h> /* uintptr_t */ #include <sys/sysctl.h> #include <sys/syslog.h> +#include <sys/endian.h> #ifdef MBUF_TIMESTAMP #include <sys/time.h> #endif @@ -65,7 +66,6 @@ #include <machine/bus.h> #include <machine/intr.h> -#include <machine/endian.h> #include <machine/octeonvar.h> #include <machine/octeon_model.h> |