spi: spidev: Completely disable the spidev warning
authorDom Cobley <popcornmix@gmail.com>
Mon, 24 Jan 2022 13:41:16 +0000 (13:41 +0000)
committerDom Cobley <popcornmix@gmail.com>
Mon, 19 Feb 2024 11:31:31 +0000 (11:31 +0000)
An alternative strategy would be to use "rpi,spidev" instead, but that
would require many Raspberry Pi Device Tree changes.

Signed-off-by: Phil Elwell <phil@raspberrypi.org>
drivers/spi/spidev.c

index 2d5e32c..7ea5560 100644 (file)
@@ -719,7 +719,7 @@ MODULE_DEVICE_TABLE(spi, spidev_spi_ids);
  */
 static int spidev_of_check(struct device *dev)
 {
-       if (device_property_match_string(dev, "compatible", "spidev") < 0)
+       if (1 || device_property_match_string(dev, "compatible", "spidev") < 0)
                return 0;
 
        dev_err(dev, "spidev listed directly in DT is not supported\n");