power: domain: ti: Fix the order for platform data entries
Add the power domain platform data entries in alphabetical order. Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com> Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
This commit is contained in:

committed by
Tom Rini

parent
1538d86ad7
commit
bda4be0988
@@ -71,6 +71,24 @@ static void lpsc_write(u32 val, struct ti_lpsc *lpsc, u32 reg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const struct soc_attr ti_k3_soc_pd_data[] = {
|
static const struct soc_attr ti_k3_soc_pd_data[] = {
|
||||||
|
#if IS_ENABLED(CONFIG_SOC_K3_AM625)
|
||||||
|
{
|
||||||
|
.family = "AM62X",
|
||||||
|
.data = &am62x_pd_platdata,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if IS_ENABLED(CONFIG_SOC_K3_AM62A7)
|
||||||
|
{
|
||||||
|
.family = "AM62AX",
|
||||||
|
.data = &am62ax_pd_platdata,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if IS_ENABLED(CONFIG_SOC_K3_AM62P5)
|
||||||
|
{
|
||||||
|
.family = "AM62PX",
|
||||||
|
.data = &am62px_pd_platdata,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
#if IS_ENABLED(CONFIG_SOC_K3_J721E)
|
#if IS_ENABLED(CONFIG_SOC_K3_J721E)
|
||||||
{
|
{
|
||||||
.family = "J721E",
|
.family = "J721E",
|
||||||
@@ -87,29 +105,11 @@ static const struct soc_attr ti_k3_soc_pd_data[] = {
|
|||||||
.data = &j721s2_pd_platdata,
|
.data = &j721s2_pd_platdata,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
#if IS_ENABLED(CONFIG_SOC_K3_AM625)
|
|
||||||
{
|
|
||||||
.family = "AM62X",
|
|
||||||
.data = &am62x_pd_platdata,
|
|
||||||
},
|
|
||||||
#endif
|
|
||||||
#if IS_ENABLED(CONFIG_SOC_K3_AM62A7)
|
|
||||||
{
|
|
||||||
.family = "AM62AX",
|
|
||||||
.data = &am62ax_pd_platdata,
|
|
||||||
},
|
|
||||||
#endif
|
|
||||||
#if IS_ENABLED(CONFIG_SOC_K3_J784S4)
|
#if IS_ENABLED(CONFIG_SOC_K3_J784S4)
|
||||||
{
|
{
|
||||||
.family = "J784S4",
|
.family = "J784S4",
|
||||||
.data = &j784s4_pd_platdata,
|
.data = &j784s4_pd_platdata,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
#if IS_ENABLED(CONFIG_SOC_K3_AM62P5)
|
|
||||||
{
|
|
||||||
.family = "AM62PX",
|
|
||||||
.data = &am62px_pd_platdata,
|
|
||||||
},
|
|
||||||
#endif
|
#endif
|
||||||
{ /* sentinel */ }
|
{ /* sentinel */ }
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user