summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch
diff options
context:
space:
mode:
authorSandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>2024-01-19 13:41:55 -0700
committerMark Hatle <mark.hatle@amd.com>2024-01-22 16:31:41 -0700
commit4eccda49693a2c75f906dffda47abbeb4197d12e (patch)
tree16f583c98d89590757918584886d4a0dd6373df7 /meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0013-arm-xenpv-fix-TPM-address-print-warning.patch
parentd925a82f3631bd20648a91bc23d5746e457c9b8b (diff)
downloadmeta-xilinx-4eccda49693a2c75f906dffda47abbeb4197d12e.tar.gz
qemu: Rename qemu-xen to qemu-xen_7.1
Rename qemu-xen to qemu-xen_7.1 inclusion file and update the same in qemu-xilinx_2023 qemu_7.1 recipes. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
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.patch27
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 @@
1From c5b128668d9cd1e1cb4da80d5bc8aaebc6ff2e19 Mon Sep 17 00:00:00 2001
2From: Vikram Garhwal <vikram.garhwal@amd.com>
3Date: Fri, 23 Dec 2022 00:06:29 +0000
4Subject: [PATCH 13/16] arm: xenpv: fix TPM address print warning
5
6Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
7Acked-by: Stefano Stabellini <stefano.stabellini@amd.com>
8---
9 hw/arm/xen_arm.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/hw/arm/xen_arm.c b/hw/arm/xen_arm.c
13index 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--
262.17.1
27