diff options
-rw-r--r-- | src/soc/rockchip/rk3399/clock.c | 4 | ||||
-rw-r--r-- | src/soc/rockchip/rk3399/include/soc/grf.h | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/src/soc/rockchip/rk3399/clock.c b/src/soc/rockchip/rk3399/clock.c index db4ec3db47..7bf5df8261 100644 --- a/src/soc/rockchip/rk3399/clock.c +++ b/src/soc/rockchip/rk3399/clock.c @@ -17,10 +17,6 @@ #include <soc/clock.h> #include <soc/grf.h> -struct rk3399_grf_regs * const rk3399_grf = (void *)GRF_BASE; -struct rk3399_pmugrf_regs * const rk3399_pmugrf = (void *)PMUGRF_BASE; -struct rk3399_pmusgrf_regs * const rk3399_pmusgrf = (void *)PMUSGRF_BASE; - void rkclk_configure_spi(unsigned int bus, unsigned int hz) { } diff --git a/src/soc/rockchip/rk3399/include/soc/grf.h b/src/soc/rockchip/rk3399/include/soc/grf.h index 9d1821cb5b..389454f0c7 100644 --- a/src/soc/rockchip/rk3399/include/soc/grf.h +++ b/src/soc/rockchip/rk3399/include/soc/grf.h @@ -315,9 +315,9 @@ struct rk3399_pmusgrf_regs { }; check_member(rk3399_pmusgrf_regs, slv_secure_con4, 0xe3d4); -extern struct rk3399_grf_regs * const rk3399_grf; -extern struct rk3399_pmugrf_regs * const rk3399_pmugrf; -extern struct rk3399_pmusgrf_regs * const rk3399_pmusgrf; +static struct rk3399_grf_regs * const rk3399_grf = (void *)GRF_BASE; +static struct rk3399_pmugrf_regs * const rk3399_pmugrf = (void *)PMUGRF_BASE; +static struct rk3399_pmusgrf_regs * const rk3399_pmusgrf = (void *)PMUSGRF_BASE; #define UART2A_SEL RK_CLRSETBITS(3 << 10, 0 << 10) #define UART2B_SEL RK_CLRSETBITS(3 << 10, 1 << 10) |