aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/msm
diff options
context:
space:
mode:
authorRob Clark <robdclark@gmail.com>2015-07-27 20:52:50 -0400
committerRob Clark <robdclark@gmail.com>2015-08-15 18:27:13 -0400
commit5cf3a4553fc8395c4ad38077f8cee6c91f832393 (patch)
treeab48a6d4b39e9faa0d08976671378dc2e8872031 /drivers/gpu/drm/msm
parent3a84f8469e2687b9fdcf83d615b8001a2443566a (diff)
drm/msm/hdmi: standardize on lead chip for compatible names
For all of these devices, msm89xy was the lead chip, so standardize the compatible names to align with convention used by rest of the qcom/msm drivers. Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/msm')
-rw-r--r--drivers/gpu/drm/msm/hdmi/hdmi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/msm/hdmi/hdmi.c b/drivers/gpu/drm/msm/hdmi/hdmi.c
index a94a46867c84..101b324cdeef 100644
--- a/drivers/gpu/drm/msm/hdmi/hdmi.c
+++ b/drivers/gpu/drm/msm/hdmi/hdmi.c
@@ -347,7 +347,7 @@ static const char *pwr_clk_names_8x74[] = {"extp_clk", "alt_iface_clk"};
347static const char *hpd_clk_names_8x74[] = {"iface_clk", "core_clk", "mdp_core_clk"}; 347static const char *hpd_clk_names_8x74[] = {"iface_clk", "core_clk", "mdp_core_clk"};
348static unsigned long hpd_clk_freq_8x74[] = {0, 19200000, 0}; 348static unsigned long hpd_clk_freq_8x74[] = {0, 19200000, 0};
349 349
350static struct hdmi_platform_config hdmi_tx_8074_config = { 350static struct hdmi_platform_config hdmi_tx_8974_config = {
351 .phy_init = hdmi_phy_8x74_init, 351 .phy_init = hdmi_phy_8x74_init,
352 HDMI_CFG(pwr_reg, 8x74), 352 HDMI_CFG(pwr_reg, 8x74),
353 HDMI_CFG(hpd_reg, 8x74), 353 HDMI_CFG(hpd_reg, 8x74),
@@ -369,7 +369,7 @@ static struct hdmi_platform_config hdmi_tx_8084_config = {
369 369
370static const char *hpd_reg_names_8x94[] = {}; 370static const char *hpd_reg_names_8x94[] = {};
371 371
372static struct hdmi_platform_config hdmi_tx_8x94_config = { 372static struct hdmi_platform_config hdmi_tx_8994_config = {
373 .phy_init = NULL, /* nothing to do for this HDMI PHY 20nm */ 373 .phy_init = NULL, /* nothing to do for this HDMI PHY 20nm */
374 HDMI_CFG(pwr_reg, 8x74), 374 HDMI_CFG(pwr_reg, 8x74),
375 HDMI_CFG(hpd_reg, 8x94), 375 HDMI_CFG(hpd_reg, 8x94),
@@ -379,9 +379,9 @@ static struct hdmi_platform_config hdmi_tx_8x94_config = {
379}; 379};
380 380
381static const struct of_device_id dt_match[] = { 381static const struct of_device_id dt_match[] = {
382 { .compatible = "qcom,hdmi-tx-8994", .data = &hdmi_tx_8x94_config }, 382 { .compatible = "qcom,hdmi-tx-8994", .data = &hdmi_tx_8994_config },
383 { .compatible = "qcom,hdmi-tx-8084", .data = &hdmi_tx_8084_config }, 383 { .compatible = "qcom,hdmi-tx-8084", .data = &hdmi_tx_8084_config },
384 { .compatible = "qcom,hdmi-tx-8074", .data = &hdmi_tx_8074_config }, 384 { .compatible = "qcom,hdmi-tx-8974", .data = &hdmi_tx_8974_config },
385 { .compatible = "qcom,hdmi-tx-8960", .data = &hdmi_tx_8960_config }, 385 { .compatible = "qcom,hdmi-tx-8960", .data = &hdmi_tx_8960_config },
386 { .compatible = "qcom,hdmi-tx-8660", .data = &hdmi_tx_8660_config }, 386 { .compatible = "qcom,hdmi-tx-8660", .data = &hdmi_tx_8660_config },
387 {} 387 {}