diff options
Diffstat (limited to 'meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch')
-rw-r--r-- | meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch b/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch new file mode 100644 index 00000000..1aa09efb --- /dev/null +++ b/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | From c5b128668d9cd1e1cb4da80d5bc8aaebc6ff2e19 Mon Sep 17 00:00:00 2001 | ||
2 | From: Vikram Garhwal <vikram.garhwal@amd.com> | ||
3 | Date: Fri, 23 Dec 2022 00:06:29 +0000 | ||
4 | Subject: [PATCH 13/16] arm: xenpv: fix TPM address print warning | ||
5 | |||
6 | Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com> | ||
7 | Acked-by: Stefano Stabellini <stefano.stabellini@amd.com> | ||
8 | --- | ||
9 | hw/arm/xen_arm.c | 2 +- | ||
10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/hw/arm/xen_arm.c b/hw/arm/xen_arm.c | ||
13 | index f248b5744a..153cedfeb4 100644 | ||
14 | --- a/hw/arm/xen_arm.c | ||
15 | +++ b/hw/arm/xen_arm.c | ||
16 | @@ -118,7 +118,7 @@ static void xen_enable_tpm(void) | ||
17 | sysbus_realize_and_unref(busdev, &error_fatal); | ||
18 | sysbus_mmio_map(busdev, 0, GUEST_TPM_BASE); | ||
19 | |||
20 | - DPRINTF("Connected tpmdev at address 0x%lx\n", GUEST_TPM_BASE); | ||
21 | + DPRINTF("Connected tpmdev at address 0x%llx\n", GUEST_TPM_BASE); | ||
22 | #endif | ||
23 | } | ||
24 | |||
25 | -- | ||
26 | 2.17.1 | ||
27 | |||