1234567891011121314151617181920212223242526272829303132 |
- From 536581825219e97fa2ae0c4de35605d2f6311416 Mon Sep 17 00:00:00 2001
- From: Vincent Tremblay <[email protected]>
- Date: Tue, 27 Dec 2022 09:00:58 -0500
- Subject: [PATCH 2/2] spidev: Add Silicon Labs SI3210 device compatible
- Add compatible string for Silicon Labs SI3210 device.
- Note: This patch is adapted from a patch submitted to the for-next branch (v6.3).
- Signed-off-by: Vincent Tremblay <[email protected]>
- ---
- drivers/spi/spidev.c | 2 ++
- 1 file changed, 2 insertions(+)
- --- a/drivers/spi/spidev.c
- +++ b/drivers/spi/spidev.c
- @@ -701,6 +701,7 @@ static const struct spi_device_id spidev
- { .name = "spi-petra" },
- { .name = "spi-authenta" },
- { .name = "em3581" },
- + { .name = "si3210" },
- {},
- };
- MODULE_DEVICE_TABLE(spi, spidev_spi_ids);
- @@ -728,6 +729,7 @@ static const struct of_device_id spidev_
- { .compatible = "cisco,spi-petra", .data = &spidev_of_check },
- { .compatible = "micron,spi-authenta", .data = &spidev_of_check },
- { .compatible = "silabs,em3581", .data = &spidev_of_check },
- + { .compatible = "silabs,si3210", .data = &spidev_of_check },
- {},
- };
- MODULE_DEVICE_TABLE(of, spidev_dt_ids);
|