]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
rockchip: timer: dw-apb-timer: use regs variable with uintptr_t size
authorJohan Jonker <jbx6244@gmail.com>
Mon, 13 Mar 2023 00:29:47 +0000 (01:29 +0100)
committerKever Yang <kever.yang@rock-chips.com>
Sat, 6 May 2023 09:28:18 +0000 (17:28 +0800)
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 regs variable with uintptr_t size in the
dw-apb-timer.c file.

Signed-off-by: Johan Jonker <jbx6244@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/timer/dw-apb-timer.c

index 10f0a9f646e55c6214327af1df2be9ab2be79ee6..b171232c4844f9a42e1e1fe6c29697f29ca060f2 100644 (file)
@@ -23,7 +23,7 @@
 #define DW_APB_CTRL            0x8
 
 struct dw_apb_timer_priv {
-       fdt_addr_t regs;
+       uintptr_t regs;
        struct reset_ctl_bulk resets;
 };