aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-05-22 01:02:56 -0400
committerInki Dae <daeinki@gmail.com>2014-06-01 13:07:10 -0400
commit16337077a8975846debabb34dc9c6a4c31fe90db (patch)
tree81aca68af6b6d3522e1dc492efe10468813b2e49
parent7e3a6cc8698fc917bc5967f861411db2a8a7b0a5 (diff)
drm/exynos: Staticize local symbols in exynos_hdmi.c
These symbols are local to this file. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r--drivers/gpu/drm/exynos/exynos_hdmi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c
index beb908195726..e05c86af9c35 100644
--- a/drivers/gpu/drm/exynos/exynos_hdmi.c
+++ b/drivers/gpu/drm/exynos/exynos_hdmi.c
@@ -578,21 +578,21 @@ static const struct hdmiphy_config hdmiphy_5420_configs[] = {
578 }, 578 },
579}; 579};
580 580
581struct hdmi_driver_data exynos5420_hdmi_driver_data = { 581static struct hdmi_driver_data exynos5420_hdmi_driver_data = {
582 .type = HDMI_TYPE14, 582 .type = HDMI_TYPE14,
583 .phy_confs = hdmiphy_5420_configs, 583 .phy_confs = hdmiphy_5420_configs,
584 .phy_conf_count = ARRAY_SIZE(hdmiphy_5420_configs), 584 .phy_conf_count = ARRAY_SIZE(hdmiphy_5420_configs),
585 .is_apb_phy = 1, 585 .is_apb_phy = 1,
586}; 586};
587 587
588struct hdmi_driver_data exynos4212_hdmi_driver_data = { 588static struct hdmi_driver_data exynos4212_hdmi_driver_data = {
589 .type = HDMI_TYPE14, 589 .type = HDMI_TYPE14,
590 .phy_confs = hdmiphy_v14_configs, 590 .phy_confs = hdmiphy_v14_configs,
591 .phy_conf_count = ARRAY_SIZE(hdmiphy_v14_configs), 591 .phy_conf_count = ARRAY_SIZE(hdmiphy_v14_configs),
592 .is_apb_phy = 0, 592 .is_apb_phy = 0,
593}; 593};
594 594
595struct hdmi_driver_data exynos5_hdmi_driver_data = { 595static struct hdmi_driver_data exynos5_hdmi_driver_data = {
596 .type = HDMI_TYPE14, 596 .type = HDMI_TYPE14,
597 .phy_confs = hdmiphy_v13_configs, 597 .phy_confs = hdmiphy_v13_configs,
598 .phy_conf_count = ARRAY_SIZE(hdmiphy_v13_configs), 598 .phy_conf_count = ARRAY_SIZE(hdmiphy_v13_configs),