mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
iio: multiplexer: iio-mux: Simplify with dev_err_probe()
Common pattern of handling deferred probe can be simplified with dev_err_probe(). Less code and also it prints the error value. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Acked-by: Peter Rosin <peda@axentia.se> Link: https://lore.kernel.org/r/20200829064726.26268-18-krzk@kernel.org Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
committed by
Jonathan Cameron
parent
0d81951dad
commit
c10eb9b22c
@@ -354,11 +354,9 @@ static int mux_probe(struct platform_device *pdev)
|
|||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
parent = devm_iio_channel_get(dev, "parent");
|
parent = devm_iio_channel_get(dev, "parent");
|
||||||
if (IS_ERR(parent)) {
|
if (IS_ERR(parent))
|
||||||
if (PTR_ERR(parent) != -EPROBE_DEFER)
|
return dev_err_probe(dev, PTR_ERR(parent),
|
||||||
dev_err(dev, "failed to get parent channel\n");
|
"failed to get parent channel\n");
|
||||||
return PTR_ERR(parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
sizeof_ext_info = iio_get_channel_ext_info_count(parent);
|
sizeof_ext_info = iio_get_channel_ext_info_count(parent);
|
||||||
if (sizeof_ext_info) {
|
if (sizeof_ext_info) {
|
||||||
|
|||||||
Reference in New Issue
Block a user