cc05fa6b75887fc9cea350af66c4ae47a6dba7fe
[openwrt/openwrt.git] /
1 From c67d90e058550403a3e6f9b05bfcdcfa12b1815c Mon Sep 17 00:00:00 2001
2 From: Vincent Tremblay <vincent@vtremblay.dev>
3 Date: Mon, 26 Dec 2022 21:35:48 -0500
4 Subject: [PATCH] spidev: Add Silicon Labs EM3581 device compatible
5
6 Add compatible string for Silicon Labs EM3581 device.
7
8 Signed-off-by: Vincent Tremblay <vincent@vtremblay.dev>
9 Link: https://lore.kernel.org/r/20221227023550.569547-2-vincent@vtremblay.dev
10 Signed-off-by: Mark Brown <broonie@kernel.org>
11 ---
12 drivers/spi/spidev.c | 2 ++
13 1 file changed, 2 insertions(+)
14
15 --- a/drivers/spi/spidev.c
16 +++ b/drivers/spi/spidev.c
17 @@ -700,6 +700,7 @@ static const struct spi_device_id spidev
18 { .name = "m53cpld" },
19 { .name = "spi-petra" },
20 { .name = "spi-authenta" },
21 + { .name = "em3581" },
22 {},
23 };
24 MODULE_DEVICE_TABLE(spi, spidev_spi_ids);
25 @@ -726,6 +727,7 @@ static const struct of_device_id spidev_
26 { .compatible = "menlo,m53cpld", .data = &spidev_of_check },
27 { .compatible = "cisco,spi-petra", .data = &spidev_of_check },
28 { .compatible = "micron,spi-authenta", .data = &spidev_of_check },
29 + { .compatible = "silabs,em3581", .data = &spidev_of_check },
30 {},
31 };
32 MODULE_DEVICE_TABLE(of, spidev_dt_ids);