From 969697de7fa6eee12fbe216f9603708932a78c0d Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Tue, 19 Mar 2019 11:36:07 +0800 Subject: [PATCH] regulator: axp20x: Remove unneeded NULL test against rdev rdev won't be NULL in .enable callback. Signed-off-by: Axel Lin Acked-by: Chen-Yu Tsai Signed-off-by: Mark Brown --- drivers/regulator/axp20x-regulator.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/regulator/axp20x-regulator.c b/drivers/regulator/axp20x-regulator.c index fba8f58ab769..8a366f66208e 100644 --- a/drivers/regulator/axp20x-regulator.c +++ b/drivers/regulator/axp20x-regulator.c @@ -437,9 +437,6 @@ static int axp20x_regulator_enable_regmap(struct regulator_dev *rdev) struct axp20x_dev *axp20x = rdev_get_drvdata(rdev); const struct regulator_desc *desc; - if (!rdev) - return -EINVAL; - desc = rdev->desc; switch (axp20x->variant) { -- 2.39.5