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 EM3581 device compatible

Add compatible string for Silicon Labs EM3581 device.

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

authored by

Vincent Tremblay and committed by
Mark Brown
c67d90e0 54c467b3

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