diff mbox series

spidev: Add Silicon Labs EM3581 device compatible

Message ID 20221224041825.171345-1-vincent@vtremblay.dev (mailing list archive)
State New, archived
Headers show
Series spidev: Add Silicon Labs EM3581 device compatible | expand

Commit Message

Vincent Tremblay Dec. 24, 2022, 4:18 a.m. UTC
Add compatible string for Silicon Labs EM3581 device.

Signed-off-by: Vincent Tremblay <vincent@vtremblay.dev>
---
 drivers/spi/spidev.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Mark Brown Dec. 26, 2022, 11:30 p.m. UTC | #1
On Fri, Dec 23, 2022 at 11:18:25PM -0500, Vincent Tremblay wrote:
> Add compatible string for Silicon Labs EM3581 device.

Even trivial bindings should be documented - this should be added to
some binding somewhere, trivial-devices.yaml should be fine.
diff mbox series

Patch

diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c
index 6313e7d0cdf8..319f8cc1cda8 100644
--- a/drivers/spi/spidev.c
+++ b/drivers/spi/spidev.c
@@ -702,6 +702,7 @@  static const struct spi_device_id spidev_spi_ids[] = {
 	{ .name = "m53cpld" },
 	{ .name = "spi-petra" },
 	{ .name = "spi-authenta" },
+	{ .name = "em3581" },
 	{},
 };
 MODULE_DEVICE_TABLE(spi, spidev_spi_ids);
@@ -728,6 +729,7 @@  static const struct of_device_id spidev_dt_ids[] = {
 	{ .compatible = "menlo,m53cpld", .data = &spidev_of_check },
 	{ .compatible = "cisco,spi-petra", .data = &spidev_of_check },
 	{ .compatible = "micron,spi-authenta", .data = &spidev_of_check },
+	{ .compatible = "siliconlabs,em3581", .data = &spidev_of_check },
 	{},
 };
 MODULE_DEVICE_TABLE(of, spidev_dt_ids);