Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1573927

[PATCH v6 3/3] spi: acpi: Initialize modalias from of_compatible

From Dan O'Donovan <dan@emutex.com>
Newsgroups linux.kernel
Subject [PATCH v6 3/3] spi: acpi: Initialize modalias from of_compatible
Date 2017-02-05 17:40 +0100
Message-ID <t7y14-1hp-3@gated-at.bofh.it> (permalink)
References <t73zX-64h-3@gated-at.bofh.it> <t7y14-1hp-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


When using devicetree spi_device.modalias is set to the compatible
string with the vendor prefix removed. For SPI devices described via
ACPI the spi_device.modalias string is initialized by acpi_device_hid.
When using ACPI and DT ids this string ends up something like "PRP0001".

Change acpi_register_spi_device to use the of_compatible property if
present. This makes it easier to instantiate spi drivers through ACPI
with DT ids.

Signed-off-by: Dan O'Donovan <dan@emutex.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Reviewed-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Tested-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Acked-by: Mark Brown <broonie@kernel.org>
---
 drivers/spi/spi.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 656dd3e..ad7f638 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -1722,13 +1722,15 @@ static acpi_status acpi_register_spi_device(struct spi_master *master,
 		return AE_OK;
 	}
 
+	acpi_set_modalias(adev, acpi_device_hid(adev), spi->modalias,
+			  sizeof(spi->modalias));
+
 	if (spi->irq < 0)
 		spi->irq = acpi_dev_gpio_irq_get(adev, 0);
 
 	acpi_device_set_enumerated(adev);
 
 	adev->power.flags.ignore_parent = true;
-	strlcpy(spi->modalias, acpi_device_hid(adev), sizeof(spi->modalias));
 	if (spi_add_device(spi)) {
 		adev->power.flags.ignore_parent = false;
 		dev_err(&master->dev, "failed to add SPI device %s from ACPI\n",
-- 
2.7.4

Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v5 0/3] Init device ids from ACPI of_compatible Dan O'Donovan <dan@emutex.com> - 2017-02-04 09:10 +0100
  [PATCH v5 1/3] ACPI / bus: Export acpi_of_modalias equiv of of_modalias_node Dan O'Donovan <dan@emutex.com> - 2017-02-04 09:10 +0100
  [PATCH v6 3/3] spi: acpi: Initialize modalias from of_compatible Dan O'Donovan <dan@emutex.com> - 2017-02-05 17:40 +0100
    Re: [PATCH v6 3/3] spi: acpi: Initialize modalias from of_compatible Mark Brown <broonie@kernel.org> - 2017-02-06 17:40 +0100
  [PATCH v6 0/3] Init device ids from ACPI of_compatible Dan O'Donovan <dan@emutex.com> - 2017-02-05 17:40 +0100
    [PATCH v6 1/3] ACPI / bus: Export acpi_of_modalias equiv of of_modalias_node Dan O'Donovan <dan@emutex.com> - 2017-02-05 17:40 +0100
    [PATCH v6 2/3] i2c: acpi: Initialize info.type from of_compatible Dan O'Donovan <dan@emutex.com> - 2017-02-05 17:40 +0100
    Re: [PATCH v6 0/3] Init device ids from ACPI of_compatible "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2017-02-09 15:00 +0100

csiph-web