Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

spidev: Add Silicon Labs SI3210 device compatible

Add compatible string for Silicon Labs SI3210 device.

Signed-off-by: Vincent Tremblay <vincent@vtremblay.dev>
Link: https://lore.kernel.org/r/20221227141011.111410-2-vincent@vtremblay.dev
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Vincent Tremblay and committed by
Mark Brown
6c9d1fd5 f7879d67

+2
+2
drivers/spi/spidev.c
··· 703 703 { .name = "spi-petra" }, 704 704 { .name = "spi-authenta" }, 705 705 { .name = "em3581" }, 706 + { .name = "si3210" }, 706 707 {}, 707 708 }; 708 709 MODULE_DEVICE_TABLE(spi, spidev_spi_ids); ··· 731 730 { .compatible = "cisco,spi-petra", .data = &spidev_of_check }, 732 731 { .compatible = "micron,spi-authenta", .data = &spidev_of_check }, 733 732 { .compatible = "silabs,em3581", .data = &spidev_of_check }, 733 + { .compatible = "silabs,si3210", .data = &spidev_of_check }, 734 734 {}, 735 735 }; 736 736 MODULE_DEVICE_TABLE(of, spidev_dt_ids);