ef36c82a6c61601b407fb83ac48b0cdab6f2d94b
[openwrt/staging/thess.git] /
1 From 6c9d1fd52956c3148e847a214bae9102b1811de5 Mon Sep 17 00:00:00 2001
2 From: Vincent Tremblay <vincent@vtremblay.dev>
3 Date: Tue, 27 Dec 2022 09:10:08 -0500
4 Subject: [PATCH] spidev: Add Silicon Labs SI3210 device compatible
5
6 Add compatible string for Silicon Labs SI3210 device.
7
8 Signed-off-by: Vincent Tremblay <vincent@vtremblay.dev>
9 Link: https://lore.kernel.org/r/20221227141011.111410-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 @@ -692,6 +692,7 @@ static const struct spi_device_id spidev
18 { .name = "spi-petra" },
19 { .name = "spi-authenta" },
20 { .name = "em3581" },
21 + { .name = "si3210" },
22 {},
23 };
24 MODULE_DEVICE_TABLE(spi, spidev_spi_ids);
25 @@ -707,6 +708,7 @@ static const struct of_device_id spidev_
26 { .compatible = "cisco,spi-petra" },
27 { .compatible = "micron,spi-authenta" },
28 { .compatible = "silabs,em3581" },
29 + { .compatible = "silabs,si3210" },
30 {},
31 };
32 MODULE_DEVICE_TABLE(of, spidev_dt_ids);