From: Phil Elwell Date: Mon, 29 Nov 2021 12:14:49 +0000 (+0000) Subject: spi: spidev: Restore loading from Device Tree X-Git-Tag: accepted/tizen/unified/20240422.153132~660 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0136f6f63e0195fd8ff84a221910de65e8e83c9a;p=platform%2Fkernel%2Flinux-rpi.git spi: spidev: Restore loading from Device Tree As happens occasionally, an upstream change has once again prevented spidev from being loaded via Device Tree. We now need "spidev" to be included in the new spi_device_id list, otherwise although the spidev driver gets loaded no /dev/spidev*.* entries will appear. Signed-off-by: Phil Elwell --- diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index 7ea5560..6fae551 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c @@ -699,6 +699,7 @@ static const struct file_operations spidev_fops = { static struct class *spidev_class; static const struct spi_device_id spidev_spi_ids[] = { + { .name = "spidev" }, { .name = "dh2228fv" }, { .name = "ltc2488" }, { .name = "sx1301" },