device/mmio.h: Add include file for MMIO ops

MMIO operations are arch-agnostic so the include
path should not be arch/.

Change-Id: I0fd70f5aeca02e98e96b980c3aca0819f5c44b98
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/31691
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Kyösti Mälkki
2019-03-03 08:01:05 +02:00
parent 065857ee7f
commit 13f66507af
465 changed files with 489 additions and 358 deletions

View File

@ -12,7 +12,7 @@
#ifndef __BDK_BDK_COREBOOT_H
#define __BDK_BDK_COREBOOT_H
#include <arch/io.h>
#include <device/mmio.h>
#include <delay.h>
/**

View File

@ -13,7 +13,7 @@
* GNU General Public License for more details.
*/
#include <arch/io.h>
#include <device/mmio.h>
#include <assert.h>
#include <bootstate.h>
#include <console/console.h>

View File

@ -16,7 +16,7 @@
#include <cbfs.h>
#include <string.h>
#include <console/console.h>
#include <arch/io.h>
#include <device/mmio.h>
#include <arch/early_variables.h>
#include "hwilib.h"