From 99bcdc503c53f3949ba2e2785ebb4f833b148566 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Mon, 17 Jun 2019 21:07:16 -0400 Subject: [PATCH] bootloade/arm: Change a physical address to phys_addr_t. Fixes a compile error with recent GCC. --- src/system/boot/arch/arm/arch_framebuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/boot/arch/arm/arch_framebuffer.h b/src/system/boot/arch/arm/arch_framebuffer.h index f8f4892cf6..86b5ec99bc 100644 --- a/src/system/boot/arch/arm/arch_framebuffer.h +++ b/src/system/boot/arch/arm/arch_framebuffer.h @@ -48,7 +48,7 @@ public: protected: addr_t fBase; - addr_t fPhysicalBase; + phys_addr_t fPhysicalBase; size_t fSize; int fCurrentWidth; int fCurrentHeight;