[PATCH 3/8] soc: imx: gpc: fix domain_index sanity check issue
Lucas Stach
l.stach at pengutronix.de
Mon Mar 20 02:40:40 PDT 2017
Am Montag, den 20.03.2017, 14:15 +0800 schrieb Dong Aisheng:
> ARRAY_SIZE(imx_gpc_domains) represents all power domains supported
> by different SoCs. Driver should use SoC specific of_id_data->num_domains
> instead to do power domain index sanity check.
> e.g. MX6Q supports two power domains while MX6SL supports three.
It's a sanity check against writing into memory outside the array. We
don't really need to guard more against wrong DTs, but as this patch is
also equally correct:
Acked-by: Lucas Stach <l.stach at pengutronix.de>
> Cc: Lucas Stach <l.stach at pengutronix.de>
> Cc: Shawn Guo <shawnguo at kernel.org>
> Fixes: 721cabf6c660 ("soc: imx: move PGC handling to a new GPC driver")
> Signed-off-by: Dong Aisheng <aisheng.dong at nxp.com>
> ---
> drivers/soc/imx/gpc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/soc/imx/gpc.c b/drivers/soc/imx/gpc.c
> index 7e6a672..ba6e7ab 100644
> --- a/drivers/soc/imx/gpc.c
> +++ b/drivers/soc/imx/gpc.c
> @@ -413,7 +413,7 @@ static int imx_gpc_probe(struct platform_device *pdev)
> of_node_put(np);
> return ret;
> }
> - if (domain_index >= ARRAY_SIZE(imx_gpc_domains))
> + if (domain_index >= of_id_data->num_domains)
> continue;
>
> domain = &imx_gpc_domains[domain_index];
More information about the linux-arm-kernel
mailing list