diff mbox series

[v3,11/15] ram: rk3399: s/rk3399_base_params/sdram_base_params

Message ID 20190715182110.21336-12-jagan@amarulasolutions.com (mailing list archive)
State New, archived
Headers show
Series ram: rk3399: Code cleanup | expand

Commit Message

Jagan Teki July 15, 2019, 6:21 p.m. UTC
Most of the ddr parameters are common in rk3399_base_params
structure and which would reuse it in another controller like
px30 in future.

So, rename the structure from rk3399_base_params into
sdram_base_params.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Signed-off-by: YouMin Chen <cym@rock-chips.com>
---
 arch/arm/include/asm/arch-rockchip/sdram_rk3399.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Kever Yang July 16, 2019, 7:33 a.m. UTC | #1
On 2019/7/16 上午2:21, Jagan Teki wrote:
> Most of the ddr parameters are common in rk3399_base_params
> structure and which would reuse it in another controller like
> px30 in future.
>
> So, rename the structure from rk3399_base_params into
> sdram_base_params.
>
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> Signed-off-by: YouMin Chen <cym@rock-chips.com>

Reviewed-by: Kever Yang <Kever.yang@rock-chips.com>

Thanks,
  - Kever
> ---
>   arch/arm/include/asm/arch-rockchip/sdram_rk3399.h | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h b/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
> index 683093d4ca..5614b94ecb 100644
> --- a/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
> +++ b/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
> @@ -96,7 +96,7 @@ struct rk3399_sdram_channel {
>   	struct rk3399_msch_timings noc_timings;
>   };
>   
> -struct rk3399_base_params {
> +struct sdram_base_params {
>   	unsigned int ddr_freq;
>   	unsigned int dramtype;
>   	unsigned int num_channels;
> @@ -106,7 +106,7 @@ struct rk3399_base_params {
>   
>   struct rk3399_sdram_params {
>   	struct rk3399_sdram_channel ch[2];
> -	struct rk3399_base_params base;
> +	struct sdram_base_params base;
>   	struct rk3399_ddr_pctl_regs pctl_regs;
>   	struct rk3399_ddr_pi_regs pi_regs;
>   	struct rk3399_ddr_publ_regs phy_regs;
diff mbox series

Patch

diff --git a/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h b/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
index 683093d4ca..5614b94ecb 100644
--- a/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
+++ b/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
@@ -96,7 +96,7 @@  struct rk3399_sdram_channel {
 	struct rk3399_msch_timings noc_timings;
 };
 
-struct rk3399_base_params {
+struct sdram_base_params {
 	unsigned int ddr_freq;
 	unsigned int dramtype;
 	unsigned int num_channels;
@@ -106,7 +106,7 @@  struct rk3399_base_params {
 
 struct rk3399_sdram_params {
 	struct rk3399_sdram_channel ch[2];
-	struct rk3399_base_params base;
+	struct sdram_base_params base;
 	struct rk3399_ddr_pctl_regs pctl_regs;
 	struct rk3399_ddr_pi_regs pi_regs;
 	struct rk3399_ddr_publ_regs phy_regs;