@@ -675,18 +675,12 @@ static int tc_probe(struct i2c_client *client)
return ret;
tc->vddio = devm_regulator_get(dev, "vddio");
- if (IS_ERR(tc->vddio)) {
- ret = PTR_ERR(tc->vddio);
- dev_err(dev, "vddio-supply not found\n");
- return ret;
- }
+ if (IS_ERR(tc->vddio))
+ return PTR_ERR(tc->vddio);
tc->vdd = devm_regulator_get(dev, "vdd");
- if (IS_ERR(tc->vdd)) {
- ret = PTR_ERR(tc->vdd);
- dev_err(dev, "vdd-supply not found\n");
- return ret;
- }
+ if (IS_ERR(tc->vdd))
+ return PTR_ERR(tc->vdd);
tc->stby_gpio = devm_gpiod_get_optional(dev, "stby", GPIOD_OUT_HIGH);
if (IS_ERR(tc->stby_gpio))
A missing regulator node will automatically be replaced by a dummy. Thus regulators are optional anyway. Remove the error message. Signed-off-by: Michael Walle <mwalle@kernel.org> --- drivers/gpu/drm/bridge/tc358775.c | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-)