rockchip: include cru_rk3588.h and define rockchip_cru for RK3588
fix following error found by clang: CC arch/arm/mach-rockchip/cpu-info.o arch/arm/mach-rockchip/cpu-info.c:23:13: error: incomplete definition of type 'struct rockchip_cru' 23 | switch (cru->glb_rst_st) { | ~~~^ ./arch/arm/include/asm/arch-rockchip/clock.h:181:8: note: forward declaration of 'struct rockchip_cru' 181 | struct rockchip_cru; | ^ 1 error generated. Signed-off-by: FUKAUMI Naoki <naoki@radxa.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:

committed by
Kever Yang

parent
c580cb4b8b
commit
0f9872c4db
@@ -17,6 +17,8 @@
|
|||||||
# include <asm/arch-rockchip/cru_rk3399.h>
|
# include <asm/arch-rockchip/cru_rk3399.h>
|
||||||
#elif defined(CONFIG_ROCKCHIP_RK3568)
|
#elif defined(CONFIG_ROCKCHIP_RK3568)
|
||||||
#include <asm/arch-rockchip/cru_rk3568.h>
|
#include <asm/arch-rockchip/cru_rk3568.h>
|
||||||
|
#elif defined(CONFIG_ROCKCHIP_RK3588)
|
||||||
|
#include <asm/arch-rockchip/cru_rk3588.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* CRU_GLB_RST_ST */
|
/* CRU_GLB_RST_ST */
|
||||||
|
@@ -92,6 +92,8 @@ struct rk3588_cru {
|
|||||||
unsigned int pmuclkgate_con[9]; /* Address Offset: 0x0100 */
|
unsigned int pmuclkgate_con[9]; /* Address Offset: 0x0100 */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define rockchip_cru rk3588_cru
|
||||||
|
|
||||||
check_member(rk3588_cru, mode_con00, 0x280);
|
check_member(rk3588_cru, mode_con00, 0x280);
|
||||||
check_member(rk3588_cru, pmuclksel_con[1], 0x30304);
|
check_member(rk3588_cru, pmuclksel_con[1], 0x30304);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user