Commit 8b50c48d authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Hans de Goede

platform/x86: serial-multi-instantiate: Drop duplicate check

The device_get_match_data() checks for firmware node to be present,
there is no need to check for ACPI companion.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20220709211653.18938-2-andriy.shevchenko@linux.intel.comReviewed-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
parent 2b5b2782
...@@ -81,16 +81,16 @@ static void smi_devs_unregister(struct smi *smi) ...@@ -81,16 +81,16 @@ static void smi_devs_unregister(struct smi *smi)
/** /**
* smi_spi_probe - Instantiate multiple SPI devices from inst array * smi_spi_probe - Instantiate multiple SPI devices from inst array
* @pdev: Platform device * @pdev: Platform device
* @adev: ACPI device
* @smi: Internal struct for Serial multi instantiate driver * @smi: Internal struct for Serial multi instantiate driver
* @inst_array: Array of instances to probe * @inst_array: Array of instances to probe
* *
* Returns the number of SPI devices instantiate, Zero if none is found or a negative error code. * Returns the number of SPI devices instantiate, Zero if none is found or a negative error code.
*/ */
static int smi_spi_probe(struct platform_device *pdev, struct acpi_device *adev, struct smi *smi, static int smi_spi_probe(struct platform_device *pdev, struct smi *smi,
const struct smi_instance *inst_array) const struct smi_instance *inst_array)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct acpi_device *adev = ACPI_COMPANION(dev);
struct spi_controller *ctlr; struct spi_controller *ctlr;
struct spi_device *spi_dev; struct spi_device *spi_dev;
char name[50]; char name[50];
...@@ -166,17 +166,17 @@ static int smi_spi_probe(struct platform_device *pdev, struct acpi_device *adev, ...@@ -166,17 +166,17 @@ static int smi_spi_probe(struct platform_device *pdev, struct acpi_device *adev,
/** /**
* smi_i2c_probe - Instantiate multiple I2C devices from inst array * smi_i2c_probe - Instantiate multiple I2C devices from inst array
* @pdev: Platform device * @pdev: Platform device
* @adev: ACPI device
* @smi: Internal struct for Serial multi instantiate driver * @smi: Internal struct for Serial multi instantiate driver
* @inst_array: Array of instances to probe * @inst_array: Array of instances to probe
* *
* Returns the number of I2C devices instantiate, Zero if none is found or a negative error code. * Returns the number of I2C devices instantiate, Zero if none is found or a negative error code.
*/ */
static int smi_i2c_probe(struct platform_device *pdev, struct acpi_device *adev, struct smi *smi, static int smi_i2c_probe(struct platform_device *pdev, struct smi *smi,
const struct smi_instance *inst_array) const struct smi_instance *inst_array)
{ {
struct i2c_board_info board_info = {}; struct i2c_board_info board_info = {};
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct acpi_device *adev = ACPI_COMPANION(dev);
char name[32]; char name[32];
int i, ret, count; int i, ret, count;
...@@ -230,14 +230,9 @@ static int smi_probe(struct platform_device *pdev) ...@@ -230,14 +230,9 @@ static int smi_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
const struct smi_node *node; const struct smi_node *node;
struct acpi_device *adev;
struct smi *smi; struct smi *smi;
int ret; int ret;
adev = ACPI_COMPANION(dev);
if (!adev)
return -ENODEV;
node = device_get_match_data(dev); node = device_get_match_data(dev);
if (!node) { if (!node) {
dev_dbg(dev, "Error ACPI match data is missing\n"); dev_dbg(dev, "Error ACPI match data is missing\n");
...@@ -252,9 +247,9 @@ static int smi_probe(struct platform_device *pdev) ...@@ -252,9 +247,9 @@ static int smi_probe(struct platform_device *pdev)
switch (node->bus_type) { switch (node->bus_type) {
case SMI_I2C: case SMI_I2C:
return smi_i2c_probe(pdev, adev, smi, node->instances); return smi_i2c_probe(pdev, smi, node->instances);
case SMI_SPI: case SMI_SPI:
return smi_spi_probe(pdev, adev, smi, node->instances); return smi_spi_probe(pdev, smi, node->instances);
case SMI_AUTO_DETECT: case SMI_AUTO_DETECT:
/* /*
* For backwards-compatibility with the existing nodes I2C * For backwards-compatibility with the existing nodes I2C
...@@ -264,10 +259,10 @@ static int smi_probe(struct platform_device *pdev) ...@@ -264,10 +259,10 @@ static int smi_probe(struct platform_device *pdev)
* SpiSerialBus nodes that were previously ignored, and this * SpiSerialBus nodes that were previously ignored, and this
* preserves that behavior. * preserves that behavior.
*/ */
ret = smi_i2c_probe(pdev, adev, smi, node->instances); ret = smi_i2c_probe(pdev, smi, node->instances);
if (ret != -ENOENT) if (ret != -ENOENT)
return ret; return ret;
return smi_spi_probe(pdev, adev, smi, node->instances); return smi_spi_probe(pdev, smi, node->instances);
default: default:
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment