Commit 3d696f42 authored by Tero Kristo's avatar Tero Kristo Committed by Arnd Bergmann

soc: ti: ti_sci_pm_domains: check for proper args count in xlate

K2G devices still only use single parameter for power-domains property,
so check for this properly in the driver. Without this, every peripheral
fails to probe resulting in boot failure.

Link: https://lore.kernel.org/r/20201029093337.21170-1-t-kristo@ti.com
Fixes: efa5c01c ("soc: ti: ti_sci_pm_domains: switch to use multiple genpds instead of one")
Reported-by: default avatarNishanth Menon <nm@ti.com>
Signed-off-by: default avatarTero Kristo <t-kristo@ti.com>
Acked-by: default avatarNishanth Menon <nm@ti.com>
Acked-by: default avatarSantosh Shilimkar <ssantosh@kernel.org>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 01eea236
...@@ -91,7 +91,7 @@ static struct generic_pm_domain *ti_sci_pd_xlate( ...@@ -91,7 +91,7 @@ static struct generic_pm_domain *ti_sci_pd_xlate(
struct genpd_onecell_data *genpd_data = data; struct genpd_onecell_data *genpd_data = data;
unsigned int idx = genpdspec->args[0]; unsigned int idx = genpdspec->args[0];
if (genpdspec->args_count < 2) if (genpdspec->args_count != 1 && genpdspec->args_count != 2)
return ERR_PTR(-EINVAL); return ERR_PTR(-EINVAL);
if (idx >= genpd_data->num_domains) { if (idx >= genpd_data->num_domains) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment