diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-03-03 00:35:15 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-03-04 15:59:23 +0000 |
commit | 3ee8b750f49b7c82e8b8787ee306017746e8c12a (patch) | |
tree | c2d5a9a2b35e561303e9a6088004e05a7b282421 /src/include/device/mmio.h | |
parent | 3855c01e0a9d9e9787652479576e882bcda9fde5 (diff) |
arch/io.h: Separate MMIO and PNP ops
Change-Id: Ie32f1d43168c277be46cdbd7fbfa2445d9899689
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/31699
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include/device/mmio.h')
-rw-r--r-- | src/include/device/mmio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/device/mmio.h b/src/include/device/mmio.h index bebf0cfbd4..34be1e8172 100644 --- a/src/include/device/mmio.h +++ b/src/include/device/mmio.h @@ -15,7 +15,7 @@ #ifndef __DEVICE_MMIO_H__ #define __DEVICE_MMIO_H__ -/* FIXME: We only want the volatile MMIO ops. */ -#include <arch/io.h> +#include <arch/mmio.h> +#include <endian.h> #endif |