fixup! spi: ep93xx: add DT support for Cirrus EP93xx
authorNikita Shubin <nikita.shubin@maquefel.me>
Tue, 2 May 2023 09:29:05 +0000 (12:29 +0300)
committerNikita Shubin <nikita.shubin@maquefel.me>
Tue, 2 May 2023 09:29:05 +0000 (12:29 +0300)
drivers/spi/spi-ep93xx.c

index 9d99e4ddb29b4ec9e85a2e47c6d2a58d9bef33bd..bd8049fe9c91c90bb01045805bb1c729b37f5843 100644 (file)
@@ -652,7 +652,7 @@ static struct ep93xx_spi_info *ep93xx_spi_get_platdata(struct platform_device *p
 {
        struct device_node *np = pdev->dev.of_node;
 
-       if (np && of_property_read_bool(np, "use_dma"))
+       if (np && of_property_read_bool(np, "ep9301,use-dma"))
                dt_spi_info.use_dma = 1;
 
        return &dt_spi_info;
@@ -777,7 +777,7 @@ static void ep93xx_spi_remove(struct platform_device *pdev)
 
 static const struct of_device_id ep93xx_spi_of_ids[] = {
        { .compatible = "cirrus,ep9301-spi" },
-       {},
+       { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, ep93xx_spi_of_ids);