]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - board/samsung/smdk5250/smdk5250.c
SMDK5250: Use statically defined structures only in non DT case
[karo-tx-uboot.git] / board / samsung / smdk5250 / smdk5250.c
index f45e485f31db2a30c86433f4fe5ba8b4ce0756e6..22936203b08c272b71f5e457471a41caa05da001 100644 (file)
@@ -471,6 +471,12 @@ void exynos_cfg_lcd_gpio(void)
        s5p_gpio_cfg_pin(&gpio1->x0, 7, GPIO_FUNC(0x3));
 }
 
+void exynos_set_dp_phy(unsigned int onoff)
+{
+       set_dp_phy_ctrl(onoff);
+}
+
+#ifndef CONFIG_OF_CONTROL
 vidinfo_t panel_info = {
        .vl_freq        = 60,
        .vl_col         = 2560,
@@ -503,11 +509,6 @@ vidinfo_t panel_info = {
        .dp_enabled     = 1,
 };
 
-void exynos_set_dp_phy(unsigned int onoff)
-{
-       set_dp_phy_ctrl(onoff);
-}
-
 static struct edp_device_info edp_info = {
        .disp_info = {
                .h_res = 2560,
@@ -541,10 +542,13 @@ static struct exynos_dp_platform_data dp_platform_data = {
        .edp_dev_info   = &edp_info,
 };
 
+#endif
 void init_panel_info(vidinfo_t *vid)
 {
+#ifndef CONFIG_OF_CONTROL
        vid->rgb_mode   = MODE_RGB_P,
 
        exynos_set_dp_platform_data(&dp_platform_data);
+#endif
 }
 #endif