diff options
author | Tomasz Bachorski <tomasz.bachorski@nokia.com> | 2017-12-18 17:18:39 +0100 |
---|---|---|
committer | Peter Rosin <peda@axentia.se> | 2017-12-30 23:12:34 +0100 |
commit | ac5b85de17cb96445c51bd1a1c53c3f675582f26 (patch) | |
tree | b367a4b6b6c4a1741596eaafca733c3d1e88bfc6 /drivers/i2c/muxes/i2c-mux-reg.c | |
parent | 8f6d6016898615012ec92957fba65a23b7ae16c9 (diff) |
i2c: mux: reg: don't log an error for probe deferral
It's possible that i2c_mux_reg_probe_dt() could return -EPROBE_DEFER.
In that case, driver will request a probe deferral and an error
suggesting device tree parsing problem will be reported. This is
a pretty confusing information. Let's change the error handling,
so driver will be able to request probe deferral without logging
not related errors.
Signed-off-by: Tomasz Bachorski <tomasz.bachorski@nokia.com>
Signed-off-by: Peter Rosin <peda@axentia.se>
Diffstat (limited to 'drivers/i2c/muxes/i2c-mux-reg.c')
-rw-r--r-- | drivers/i2c/muxes/i2c-mux-reg.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/i2c/muxes/i2c-mux-reg.c b/drivers/i2c/muxes/i2c-mux-reg.c index f6c9c3dc6cad..c948e5a4cb04 100644 --- a/drivers/i2c/muxes/i2c-mux-reg.c +++ b/drivers/i2c/muxes/i2c-mux-reg.c @@ -177,6 +177,9 @@ static int i2c_mux_reg_probe(struct platform_device *pdev) sizeof(mux->data)); } else { ret = i2c_mux_reg_probe_dt(mux, pdev); + if (ret == -EPROBE_DEFER) + return ret; + if (ret < 0) { dev_err(&pdev->dev, "Error parsing device tree"); return ret; |