diff options
Diffstat (limited to 'drivers/gpu/drm/msm/dsi/dsi.c')
| -rw-r--r-- | drivers/gpu/drm/msm/dsi/dsi.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/gpu/drm/msm/dsi/dsi.c b/drivers/gpu/drm/msm/dsi/dsi.c index 31fdee2052be..baab79ab6e74 100644 --- a/drivers/gpu/drm/msm/dsi/dsi.c +++ b/drivers/gpu/drm/msm/dsi/dsi.c @@ -4,7 +4,6 @@   */  #include "dsi.h" -#include "dsi_cfg.h"  bool msm_dsi_is_cmd_mode(struct msm_dsi *msm_dsi)  { @@ -173,8 +172,10 @@ static int dsi_dev_remove(struct platform_device *pdev)  }  static const struct of_device_id dt_match[] = { -	{ .compatible = "qcom,mdss-dsi-ctrl", .data = NULL /* autodetect cfg */ }, -	{ .compatible = "qcom,dsi-ctrl-6g-qcm2290", .data = &qcm2290_dsi_cfg_handler }, +	{ .compatible = "qcom,mdss-dsi-ctrl" }, + +	/* Deprecated, don't use */ +	{ .compatible = "qcom,dsi-ctrl-6g-qcm2290" },  	{}  };  | 
