drm/exynos: Staticize local symbols in exynos_hdmi.c
authorSachin Kamat <sachin.kamat@linaro.org>
Thu, 22 May 2014 05:02:56 +0000 (10:32 +0530)
committerInki Dae <daeinki@gmail.com>
Sun, 1 Jun 2014 17:07:10 +0000 (02:07 +0900)
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>
drivers/gpu/drm/exynos/exynos_hdmi.c

index beb90819572648fb23f552cfea6a0ff9413b2e0c..e05c86af9c35cab37b7daae0dd3599f829e43074 100644 (file)
@@ -578,21 +578,21 @@ static const struct hdmiphy_config hdmiphy_5420_configs[] = {
        },
 };
 
-struct hdmi_driver_data exynos5420_hdmi_driver_data = {
+static struct hdmi_driver_data exynos5420_hdmi_driver_data = {
        .type           = HDMI_TYPE14,
        .phy_confs      = hdmiphy_5420_configs,
        .phy_conf_count = ARRAY_SIZE(hdmiphy_5420_configs),
        .is_apb_phy     = 1,
 };
 
-struct hdmi_driver_data exynos4212_hdmi_driver_data = {
+static struct hdmi_driver_data exynos4212_hdmi_driver_data = {
        .type           = HDMI_TYPE14,
        .phy_confs      = hdmiphy_v14_configs,
        .phy_conf_count = ARRAY_SIZE(hdmiphy_v14_configs),
        .is_apb_phy     = 0,
 };
 
-struct hdmi_driver_data exynos5_hdmi_driver_data = {
+static struct hdmi_driver_data exynos5_hdmi_driver_data = {
        .type           = HDMI_TYPE14,
        .phy_confs      = hdmiphy_v13_configs,
        .phy_conf_count = ARRAY_SIZE(hdmiphy_v13_configs),