diff options
author | Tomasz Stanislawski <t.stanislaws@samsung.com> | 2013-10-16 13:41:14 +0200 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-11-18 11:46:59 +0900 |
commit | d8e5ef5cf864187c9d15a2c71e69da9d75c88553 (patch) | |
tree | 46000a7abfd36b92ad16f7b032e643bb41c228df /drivers/gpu/drm | |
parent | d4a0c6a17406b81d99c16b33439ad00646623299 (diff) | |
download | linux-3.10-d8e5ef5cf864187c9d15a2c71e69da9d75c88553.tar.gz linux-3.10-d8e5ef5cf864187c9d15a2c71e69da9d75c88553.tar.bz2 linux-3.10-d8e5ef5cf864187c9d15a2c71e69da9d75c88553.zip |
drm: exynos: add compatibles for HDMI and Mixer chips and exynos4210 SoC
This patch add proper compatibles for Mixer and HDMI chip
available on exynos4210 SoCs.
Signed-off-by: Tomasz Stanislawski <t.stanislaws@samsung.com>
Change-Id: I5ca49ea9f95b139834de9ed8bba79b37b685bf3a
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_hdmi.c | 3 | ||||
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_mixer.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c index b8eca91648a..87c3f4271e9 100644 --- a/drivers/gpu/drm/exynos/exynos_hdmi.c +++ b/drivers/gpu/drm/exynos/exynos_hdmi.c @@ -1899,6 +1899,9 @@ static struct platform_device_id hdmi_driver_types[] = { #ifdef CONFIG_OF static struct of_device_id hdmi_match_types[] = { { + .compatible = "samsung,exynos4210-hdmi", + .data = (void *)HDMI_TYPE13, + }, { .compatible = "samsung,exynos5-hdmi", .data = (void *)HDMI_TYPE14, }, { diff --git a/drivers/gpu/drm/exynos/exynos_mixer.c b/drivers/gpu/drm/exynos/exynos_mixer.c index f853e58437f..77facedbdfb 100644 --- a/drivers/gpu/drm/exynos/exynos_mixer.c +++ b/drivers/gpu/drm/exynos/exynos_mixer.c @@ -1139,6 +1139,9 @@ static struct platform_device_id mixer_driver_types[] = { static struct of_device_id mixer_match_types[] = { { + .compatible = "samsung,exynos4-mixer", + .data = &exynos4_mxr_drv_data, + }, { .compatible = "samsung,exynos5-mixer", .data = &exynos5_mxr_drv_data, }, { |