From: Colin Ian King <[email protected]> pdata->regulators is an array of DA9052_MAX_REGULATORS struct regulator_init_data pointers hence cannot be null, so the null pointer check on pdata->regulators is redundant. Remove it.
Signed-off-by: Colin Ian King <[email protected]> --- drivers/regulator/da9052-regulator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/regulator/da9052-regulator.c b/drivers/regulator/da9052-regulator.c index 9ececfe..37e4025 100644 --- a/drivers/regulator/da9052-regulator.c +++ b/drivers/regulator/da9052-regulator.c @@ -420,7 +420,7 @@ static int da9052_regulator_probe(struct platform_device *pdev) config.dev = &pdev->dev; config.driver_data = regulator; config.regmap = da9052->regmap; - if (pdata && pdata->regulators) { + if (pdata) { config.init_data = pdata->regulators[cell->id]; } else { #ifdef CONFIG_OF -- 2.9.3

