OSDN Git Service

staging: wilc1000: modified 'clock-names' and 'compatible' property
authorAjay Singh <ajay.kathat@microchip.com>
Sat, 7 Mar 2020 08:55:29 +0000 (08:55 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 12 Mar 2020 08:23:58 +0000 (09:23 +0100)
Modified the 'clock-names' property by removing '_clk' from its name and
remove '_spi/sdio' from 'compatible' string.

Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Link: https://lore.kernel.org/r/20200307085523.7320-3-ajay.kathat@microchip.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/sdio.c
drivers/staging/wilc1000/spi.c

index 44b4268..36eb589 100644 (file)
@@ -150,7 +150,7 @@ static int wilc_sdio_probe(struct sdio_func *func,
        wilc->bus_data = sdio_priv;
        wilc->dev = &func->dev;
 
-       wilc->rtc_clk = devm_clk_get(&func->card->dev, "rtc_clk");
+       wilc->rtc_clk = devm_clk_get(&func->card->dev, "rtc");
        if (PTR_ERR_OR_ZERO(wilc->rtc_clk) == -EPROBE_DEFER)
                return -EPROBE_DEFER;
        else if (!IS_ERR(wilc->rtc_clk))
@@ -997,7 +997,7 @@ static int wilc_sdio_resume(struct device *dev)
 }
 
 static const struct of_device_id wilc_of_match[] = {
-       { .compatible = "microchip,wilc1000-sdio", },
+       { .compatible = "microchip,wilc1000", },
        { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, wilc_of_match);
index c87729e..8d4b8c2 100644 (file)
@@ -189,7 +189,7 @@ static int wilc_bus_remove(struct spi_device *spi)
 }
 
 static const struct of_device_id wilc_of_match[] = {
-       { .compatible = "microchip,wilc1000-spi", },
+       { .compatible = "microchip,wilc1000", },
        { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, wilc_of_match);