Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a3b924df authored by Mateusz Krawczuk's avatar Mateusz Krawczuk Committed by Mark Brown
Browse files

spi: s3c64xx: Add missing compatibles



Add compatibles for s3c6410, s5pc100 and s5pc110/s5pv210 boards.

Signed-off-by: default avatarMateusz Krawczuk <m.krawczuk@partner.samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 91800f0e
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -1612,6 +1612,18 @@ static struct platform_device_id s3c64xx_spi_driver_ids[] = {
};

static const struct of_device_id s3c64xx_spi_dt_match[] = {
	{ .compatible = "samsung,s3c2443-spi",
			.data = (void *)&s3c2443_spi_port_config,
	},
	{ .compatible = "samsung,s3c6410-spi",
			.data = (void *)&s3c6410_spi_port_config,
	},
	{ .compatible = "samsung,s5pc100-spi",
			.data = (void *)&s5pc100_spi_port_config,
	},
	{ .compatible = "samsung,s5pv210-spi",
			.data = (void *)&s5pv210_spi_port_config,
	},
	{ .compatible = "samsung,exynos4210-spi",
			.data = (void *)&exynos4_spi_port_config,
	},