diff options
author | Jianjun Wang <jianjun.wang@mediatek.com> | 2022-03-02 10:20:26 +0800 |
---|---|---|
committer | Hung-Te Lin <hungte@chromium.org> | 2022-03-08 08:25:36 +0000 |
commit | 8565b94a5396f8112a9b86c1c7529217dd603c17 (patch) | |
tree | 27e54396d7816d924b95660401a11c0424752eb7 /src/security | |
parent | 0e834a94556854751a321d28acf20605c75aa4da (diff) |
device/mmio.h: Move readXp/writeXp helpers to device/mmio.h
These helpers are not architecture dependent and it might be used for
different platform.
Signed-off-by: Jianjun Wang <jianjun.wang@mediatek.com>
Change-Id: Ic13a94d91affb7cf65a2f22f08ea39ed671bc8e8
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62561
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/security')
-rw-r--r-- | src/security/intel/cbnt/logging.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/intel/cbnt/logging.c b/src/security/intel/cbnt/logging.c index 514e5ac666..90d138d7c2 100644 --- a/src/security/intel/cbnt/logging.c +++ b/src/security/intel/cbnt/logging.c @@ -1,9 +1,9 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <arch/mmio.h> #include <console/console.h> #include <cpu/x86/msr.h> #include <cpu/intel/msr.h> +#include <device/mmio.h> #include <stdint.h> #include <security/intel/txt/txt.h> |