The fdt_addr_t and phys_addr_t size have been decoupled.
A 32bit CPU can expect 64-bit data from the device tree parser,
so use a base variable with uintptr_t size in the
rk_spi.c file.

Signed-off-by: Johan Jonker <jbx6...@gmail.com>
---

Changed V8:
  new patch
---
 drivers/spi/rk_spi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/rk_spi.c b/drivers/spi/rk_spi.c
index 66b20fce..7de94335 100644
--- a/drivers/spi/rk_spi.c
+++ b/drivers/spi/rk_spi.c
@@ -45,7 +45,7 @@ struct rockchip_spi_plat {
        struct dtd_rockchip_rk3288_spi of_plat;
 #endif
        s32 frequency;          /* Default clock frequency, -1 for none */
-       fdt_addr_t base;
+       uintptr_t base;
        uint deactivate_delay_us;       /* Delay to wait after deactivate */
        uint activate_delay_us;         /* Delay to wait after activate */
 };
--
2.20.1

Reply via email to