[PATCH v9 1/4] drivers: of: kexec ima: Support 32-bit platforms
    Stefan Berger 
    stefanb at linux.ibm.com
       
    Tue Apr 18 23:44:06 AEST 2023
    
    
  
From: Palmer Dabbelt <palmer at rivosinc.com>
RISC-V recently added kexec_file() support, which uses enables kexec
IMA.  We're the first 32-bit platform to support this, so we found a
build bug.
Acked-by: Rob Herring <robh at kernel.org>
Signed-off-by: Palmer Dabbelt <palmer at rivosinc.com>
Reviewed-by: Mimi Zohar <zohar at linux.ibm.com>
---
 drivers/of/kexec.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/of/kexec.c b/drivers/of/kexec.c
index f26d2ba8a371..1373d7e0a9b3 100644
--- a/drivers/of/kexec.c
+++ b/drivers/of/kexec.c
@@ -250,8 +250,8 @@ static int setup_ima_buffer(const struct kimage *image, void *fdt,
 	if (ret)
 		return -EINVAL;
 
-	pr_debug("IMA buffer at 0x%llx, size = 0x%zx\n",
-		 image->ima_buffer_addr, image->ima_buffer_size);
+	pr_debug("IMA buffer at 0x%pa, size = 0x%zx\n",
+		 &image->ima_buffer_addr, image->ima_buffer_size);
 
 	return 0;
 }
-- 
2.38.1
    
    
More information about the Linuxppc-dev
mailing list