generic: copy backport, hack, pending patch and config from 6.1 to 6.6
[openwrt/openwrt.git] / target / linux / generic / pending-6.6 / 110-v6.3-0002-spidev-Add-Silicon-Labs-SI3210-device-compatible.patch
1 From 536581825219e97fa2ae0c4de35605d2f6311416 Mon Sep 17 00:00:00 2001
2 From: Vincent Tremblay <vincent@vtremblay.dev>
3 Date: Tue, 27 Dec 2022 09:00:58 -0500
4 Subject: [PATCH 2/2] spidev: Add Silicon Labs SI3210 device compatible
5
6 Add compatible string for Silicon Labs SI3210 device.
7
8 Note: This patch is adapted from a patch submitted to the for-next branch (v6.3).
9
10 Signed-off-by: Vincent Tremblay <vincent@vtremblay.dev>
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 @@ -701,6 +701,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 @@ -728,6 +729,7 @@ static const struct of_device_id spidev_
26 { .compatible = "cisco,spi-petra", .data = &spidev_of_check },
27 { .compatible = "micron,spi-authenta", .data = &spidev_of_check },
28 { .compatible = "silabs,em3581", .data = &spidev_of_check },
29 + { .compatible = "silabs,si3210", .data = &spidev_of_check },
30 {},
31 };
32 MODULE_DEVICE_TABLE(of, spidev_dt_ids);