]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drm/msm: Update compatible strings for mdp
authorArchit Taneja <architt@codeaurora.org>
Wed, 18 Nov 2015 06:58:39 +0000 (12:28 +0530)
committerRob Clark <robdclark@gmail.com>
Mon, 14 Dec 2015 15:38:38 +0000 (10:38 -0500)
Create distinct compatible strings for mdp4 and mdp5. Keep "qcom,mdss_mdp"
as is to support downstream kernels.

Signed-off-by: Archit Taneja <architt@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
drivers/gpu/drm/msm/msm_drv.c

index 06df8aaab37599e75c5de9dc04ea59d39d58bd97..9a30807b900b1b4fe12ae2e32d152ee0b6e89c18 100644 (file)
@@ -1092,8 +1092,10 @@ static const struct platform_device_id msm_id[] = {
 };
 
 static const struct of_device_id dt_match[] = {
-       { .compatible = "qcom,mdp", .data = (void *) 4 },     /* mdp4 */
-       { .compatible = "qcom,mdss_mdp", .data = (void *) 5 }, /* mdp5 */
+       { .compatible = "qcom,mdp4", .data = (void *) 4 },      /* mdp4 */
+       { .compatible = "qcom,mdp5", .data = (void *) 5 },      /* mdp5 */
+       /* to support downstream DT files */
+       { .compatible = "qcom,mdss_mdp", .data = (void *) 5 },  /* mdp5 */
        {}
 };
 MODULE_DEVICE_TABLE(of, dt_match);