From: Manjunathappa, Prakash Date: Wed, 3 Apr 2013 14:09:06 +0000 (+0530) Subject: spi/davinci: no wildcards in DT compatible property X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=804413f2dd0bcef6d1aef7c8b3be749be9024eee;p=linux-beck.git spi/davinci: no wildcards in DT compatible property Follow DT naming convention for compatible property of the blob. Use first chip name that introduced the specific version of the device. Signed-off-by: Manjunathappa, Prakash Acked-by: Grant Likely Signed-off-by: Sekhar Nori --- diff --git a/drivers/spi/spi-davinci.c b/drivers/spi/spi-davinci.c index 8234d2259722..2e8f24a1fb95 100644 --- a/drivers/spi/spi-davinci.c +++ b/drivers/spi/spi-davinci.c @@ -776,10 +776,10 @@ rx_dma_failed: #if defined(CONFIG_OF) static const struct of_device_id davinci_spi_of_match[] = { { - .compatible = "ti,dm644x-spi", + .compatible = "ti,dm6441-spi", }, { - .compatible = "ti,da8xx-spi", + .compatible = "ti,da830-spi", .data = (void *)SPI_VERSION_2, }, { },