diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2014-04-14 04:42:23 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2014-04-14 04:42:23 +0000 |
commit | c8992de2517b433c46df41ab03c6858d9f073e97 (patch) | |
tree | 975789c012fa0f928d3c801402e296b50c65dfb2 /sys/arch/armv7 | |
parent | 48857676578d53a992109c5e8b2abadd4310e0e1 (diff) |
move the hardware structures into ahcireg.h.
Diffstat (limited to 'sys/arch/armv7')
-rw-r--r-- | sys/arch/armv7/imx/imxahci.c | 3 | ||||
-rw-r--r-- | sys/arch/armv7/sunxi/sxiahci.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/armv7/imx/imxahci.c b/sys/arch/armv7/imx/imxahci.c index 90e1042ae9d..33a9467b3c0 100644 --- a/sys/arch/armv7/imx/imxahci.c +++ b/sys/arch/armv7/imx/imxahci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: imxahci.c,v 1.2 2013/11/06 19:03:07 syl Exp $ */ +/* $OpenBSD: imxahci.c,v 1.3 2014/04/14 04:42:22 dlg Exp $ */ /* * Copyright (c) 2013 Patrick Wildt <patrick@blueri.se> * @@ -25,6 +25,7 @@ #include <machine/bus.h> +#include <dev/ic/ahcireg.h> #include <dev/ic/ahcivar.h> #include <armv7/armv7/armv7var.h> diff --git a/sys/arch/armv7/sunxi/sxiahci.c b/sys/arch/armv7/sunxi/sxiahci.c index cd7813e3321..f7dd6c12656 100644 --- a/sys/arch/armv7/sunxi/sxiahci.c +++ b/sys/arch/armv7/sunxi/sxiahci.c @@ -25,8 +25,8 @@ #include <machine/bus.h> -#include <dev/ic/ahcivar.h> #include <dev/ic/ahcireg.h> +#include <dev/ic/ahcivar.h> #include <armv7/armv7/armv7var.h> #include <armv7/sunxi/sunxireg.h> |