[PATCH v3 02/13] platform/x86: intel_cht_int33fe: Accept errors of i2c_acpi_new_device()

From: Andy Shevchenko
Date: Tue Nov 27 2018 - 10:38:31 EST


In the future i2c_acpi_new_device() will return error pointer in some cases.
Prepare intel_cht_int33fe driver to support that.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx>
Reviewed-by: Hans de Goede <hdegoede@xxxxxxxxxx>
---
drivers/platform/x86/intel_cht_int33fe.c | 22 ++++++++++++++++++++--
1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/drivers/platform/x86/intel_cht_int33fe.c b/drivers/platform/x86/intel_cht_int33fe.c
index 431151d4e611..3ba139d3bd03 100644
--- a/drivers/platform/x86/intel_cht_int33fe.c
+++ b/drivers/platform/x86/intel_cht_int33fe.c
@@ -169,7 +169,13 @@ static int cht_int33fe_probe(struct platform_device *pdev)
board_info.properties = max17047_props;
data->max17047 = i2c_acpi_new_device(dev, 1, &board_info);
if (!data->max17047)
- return -EPROBE_DEFER; /* Wait for i2c-adapter to load */
+ ret = -EPROBE_DEFER; /* Wait for i2c-adapter to load */
+ else if (IS_ERR(data->max17047))
+ ret = PTR_ERR(data->max17047);
+ else
+ ret = 0;
+ if (ret)
+ return ret;
}

data->connections[0].endpoint[0] = "port0";
@@ -195,6 +201,12 @@ static int cht_int33fe_probe(struct platform_device *pdev)

data->fusb302 = i2c_acpi_new_device(dev, 2, &board_info);
if (!data->fusb302)
+ ret = -EPROBE_DEFER; /* Wait for the i2c-adapter to load */
+ else if (IS_ERR(data->fusb302))
+ ret = PTR_ERR(data->fusb302);
+ else
+ ret = 0;
+ if (ret)
goto out_unregister_max17047;

memset(&board_info, 0, sizeof(board_info));
@@ -203,6 +215,12 @@ static int cht_int33fe_probe(struct platform_device *pdev)

data->pi3usb30532 = i2c_acpi_new_device(dev, 3, &board_info);
if (!data->pi3usb30532)
+ ret = -EPROBE_DEFER; /* Wait for the i2c-adapter to load */
+ else if (IS_ERR(data->pi3usb30532))
+ ret = PTR_ERR(data->pi3usb30532);
+ else
+ ret = 0;
+ if (ret)
goto out_unregister_fusb302;

platform_set_drvdata(pdev, data);
@@ -217,7 +235,7 @@ static int cht_int33fe_probe(struct platform_device *pdev)

device_connections_remove(data->connections);

- return -EPROBE_DEFER; /* Wait for the i2c-adapter to load */
+ return ret;
}

static int cht_int33fe_remove(struct platform_device *pdev)
--
2.19.2