Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1573617 > unrolled thread
| Started by | Dan O'Donovan <dan@emutex.com> |
|---|---|
| First post | 2017-02-04 09:10 +0100 |
| Last post | 2017-02-04 11:20 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v5 3/3] spi: acpi: Initialize modalias from of_compatible Dan O'Donovan <dan@emutex.com> - 2017-02-04 09:10 +0100
Re: [PATCH v5 3/3] spi: acpi: Initialize modalias from of_compatible Mark Brown <broonie@kernel.org> - 2017-02-04 11:20 +0100
| From | Dan O'Donovan <dan@emutex.com> |
|---|---|
| Date | 2017-02-04 09:10 +0100 |
| Subject | [PATCH v5 3/3] spi: acpi: Initialize modalias from of_compatible |
| Message-ID | <t73zX-64h-1@gated-at.bofh.it> |
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>
---
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..d9afc32 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
[toc] | [next] | [standalone]
| From | Mark Brown <broonie@kernel.org> |
|---|---|
| Date | 2017-02-04 11:20 +0100 |
| Message-ID | <t75BM-7td-23@gated-at.bofh.it> |
| In reply to | #1573617 |
[Multipart message — attachments visible in raw view] — view raw
On Sat, Feb 04, 2017 at 08:00:28AM +0000, Dan O'Donovan wrote: > + acpi_set_modalias(adev, acpi_device_hid(adev), > + spi->modalias, sizeof(spi->modalias)); > + The formatting here is really weird (why isn't the third argument on the line above?) but otherwise Acked-by: Mark Brown <broonie@kernel.org>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web