diff options
author | Vikas Sajjan <vikas.sajjan@linaro.org> | 2013-02-27 16:02:58 +0530 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2013-03-20 19:09:09 +0900 |
commit | 5830daf8174d7ea8df2621f8dbede3096bb659b5 (patch) | |
tree | 85bf903dd20870e8632d14855da211f4be7f494e | |
parent | 8698080ee092bdbd6ee2cd5e7f707ceea2812bd8 (diff) | |
download | op-kernel-dev-5830daf8174d7ea8df2621f8dbede3096bb659b5.zip op-kernel-dev-5830daf8174d7ea8df2621f8dbede3096bb659b5.tar.gz |
drm/exynos: modify the compatible string for exynos fimd
modified compatible string for exynos4 fimd as "exynos4210-fimd" and
exynos5 fimd as "exynos5250-fimd" to stick to the rule that compatible
value should be named after first specific SoC model in which this
particular IP version was included as discussed at
https://patchwork.kernel.org/patch/2144861/
Signed-off-by: Vikas Sajjan <vikas.sajjan@linaro.org>
Acked-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_fimd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c b/drivers/gpu/drm/exynos/exynos_drm_fimd.c index 36493ce..549cb7d 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_fimd.c +++ b/drivers/gpu/drm/exynos/exynos_drm_fimd.c @@ -109,9 +109,9 @@ struct fimd_context { #ifdef CONFIG_OF static const struct of_device_id fimd_driver_dt_match[] = { - { .compatible = "samsung,exynos4-fimd", + { .compatible = "samsung,exynos4210-fimd", .data = &exynos4_fimd_driver_data }, - { .compatible = "samsung,exynos5-fimd", + { .compatible = "samsung,exynos5250-fimd", .data = &exynos5_fimd_driver_data }, {}, }; |