From 08ea759db036bcd2b916a6c54c97c876c3afde55 Mon Sep 17 00:00:00 2001 From: Gautham Srinivasan Date: Wed, 24 May 2023 17:22:20 +0000 Subject: [PATCH] NVIDIA: SAUCE: spi: add "tegra-spidev" name string. BugLink: https://bugs.launchpad.net/bugs/2072591 Add "tegra-spidev" name string to load spidev.ko driver which allows user-space programs to access and communicate with SPI devices connected to the system. http://nvbugs/4130525 Signed-off-by: Gautham Srinivasan Reviewed-by: Prathamesh Shete Tested-by: Prathamesh Shete Signed-off-by: Laxman Dewangan Acked-by: Jacob Martin Acked-by: Noah Wager Signed-off-by: Noah Wager --- drivers/spi/spidev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index b329d5a49b0d..3e1f4f88f61c 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c @@ -712,6 +712,7 @@ static const struct spi_device_id spidev_spi_ids[] = { { .name = "spi-authenta" }, { .name = "em3581" }, { .name = "si3210" }, + { .name = "tegra-spidev" }, {}, }; MODULE_DEVICE_TABLE(spi, spidev_spi_ids);