diff options
author | Mateusz Krawczuk <m.krawczuk@partner.samsung.com> | 2013-09-23 05:45:45 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-23 09:51:08 -0400 |
commit | a3b924df8fa9083d2291efc2d1dca93609953718 (patch) | |
tree | 8289ffee67cc697dcd1e3f74c99b0e08d29b974a | |
parent | 91800f0e90050a4db4c77e940796f501e02af8be (diff) |
spi: s3c64xx: Add missing compatibles
Add compatibles for s3c6410, s5pc100 and s5pc110/s5pv210 boards.
Signed-off-by: Mateusz Krawczuk <m.krawczuk@partner.samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | drivers/spi/spi-s3c64xx.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index 8bed27a4108c..84cc6ac801fe 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c | |||
@@ -1612,6 +1612,18 @@ static struct platform_device_id s3c64xx_spi_driver_ids[] = { | |||
1612 | }; | 1612 | }; |
1613 | 1613 | ||
1614 | static const struct of_device_id s3c64xx_spi_dt_match[] = { | 1614 | static const struct of_device_id s3c64xx_spi_dt_match[] = { |
1615 | { .compatible = "samsung,s3c2443-spi", | ||
1616 | .data = (void *)&s3c2443_spi_port_config, | ||
1617 | }, | ||
1618 | { .compatible = "samsung,s3c6410-spi", | ||
1619 | .data = (void *)&s3c6410_spi_port_config, | ||
1620 | }, | ||
1621 | { .compatible = "samsung,s5pc100-spi", | ||
1622 | .data = (void *)&s5pc100_spi_port_config, | ||
1623 | }, | ||
1624 | { .compatible = "samsung,s5pv210-spi", | ||
1625 | .data = (void *)&s5pv210_spi_port_config, | ||
1626 | }, | ||
1615 | { .compatible = "samsung,exynos4210-spi", | 1627 | { .compatible = "samsung,exynos4210-spi", |
1616 | .data = (void *)&exynos4_spi_port_config, | 1628 | .data = (void *)&exynos4_spi_port_config, |
1617 | }, | 1629 | }, |