Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e6f2ee7 authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

OMAPDSS: TFP410: rename dvi -> tfp410



The driver for the TFP410 DPI-to-DVI chip was named quite badly as "DVI
panel driver". This patch renames the code to use tfp410 name for the
driver.

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
Acked-by: default avatarTony Lindgren <tony@atomide.com>
parent e813a55e
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -157,14 +157,14 @@ static struct omap_dss_device sdp3430_lcd_device = {
	.platform_disable	= sdp3430_panel_disable_lcd,
	.platform_disable	= sdp3430_panel_disable_lcd,
};
};


static struct panel_dvi_platform_data dvi_panel = {
static struct tfp410_platform_data dvi_panel = {
	.power_down_gpio	= -1,
	.power_down_gpio	= -1,
};
};


static struct omap_dss_device sdp3430_dvi_device = {
static struct omap_dss_device sdp3430_dvi_device = {
	.name			= "dvi",
	.name			= "dvi",
	.type			= OMAP_DISPLAY_TYPE_DPI,
	.type			= OMAP_DISPLAY_TYPE_DPI,
	.driver_name		= "dvi",
	.driver_name		= "tfp410",
	.data			= &dvi_panel,
	.data			= &dvi_panel,
	.phy.dpi.data_lines	= 24,
	.phy.dpi.data_lines	= 24,
};
};
+2 −2
Original line number Original line Diff line number Diff line
@@ -207,14 +207,14 @@ static struct omap_dss_device am3517_evm_tv_device = {
	.platform_disable	= am3517_evm_panel_disable_tv,
	.platform_disable	= am3517_evm_panel_disable_tv,
};
};


static struct panel_dvi_platform_data dvi_panel = {
static struct tfp410_platform_data dvi_panel = {
	.power_down_gpio	= -1,
	.power_down_gpio	= -1,
};
};


static struct omap_dss_device am3517_evm_dvi_device = {
static struct omap_dss_device am3517_evm_dvi_device = {
	.type			= OMAP_DISPLAY_TYPE_DPI,
	.type			= OMAP_DISPLAY_TYPE_DPI,
	.name			= "dvi",
	.name			= "dvi",
	.driver_name		= "dvi",
	.driver_name		= "tfp410",
	.data			= &dvi_panel,
	.data			= &dvi_panel,
	.phy.dpi.data_lines	= 24,
	.phy.dpi.data_lines	= 24,
};
};
+2 −2
Original line number Original line Diff line number Diff line
@@ -241,14 +241,14 @@ static struct omap_dss_device cm_t35_lcd_device = {
	.phy.dpi.data_lines	= 18,
	.phy.dpi.data_lines	= 18,
};
};


static struct panel_dvi_platform_data dvi_panel = {
static struct tfp410_platform_data dvi_panel = {
	.power_down_gpio	= CM_T35_DVI_EN_GPIO,
	.power_down_gpio	= CM_T35_DVI_EN_GPIO,
};
};


static struct omap_dss_device cm_t35_dvi_device = {
static struct omap_dss_device cm_t35_dvi_device = {
	.name			= "dvi",
	.name			= "dvi",
	.type			= OMAP_DISPLAY_TYPE_DPI,
	.type			= OMAP_DISPLAY_TYPE_DPI,
	.driver_name		= "dvi",
	.driver_name		= "tfp410",
	.data			= &dvi_panel,
	.data			= &dvi_panel,
	.phy.dpi.data_lines	= 24,
	.phy.dpi.data_lines	= 24,
};
};
+2 −2
Original line number Original line Diff line number Diff line
@@ -141,14 +141,14 @@ static struct omap_dss_device devkit8000_lcd_device = {
	.phy.dpi.data_lines     = 24,
	.phy.dpi.data_lines     = 24,
};
};


static struct panel_dvi_platform_data dvi_panel = {
static struct tfp410_platform_data dvi_panel = {
	.power_down_gpio	= -1,
	.power_down_gpio	= -1,
};
};


static struct omap_dss_device devkit8000_dvi_device = {
static struct omap_dss_device devkit8000_dvi_device = {
	.name                   = "dvi",
	.name                   = "dvi",
	.type                   = OMAP_DISPLAY_TYPE_DPI,
	.type                   = OMAP_DISPLAY_TYPE_DPI,
	.driver_name            = "dvi",
	.driver_name            = "tfp410",
	.data			= &dvi_panel,
	.data			= &dvi_panel,
	.phy.dpi.data_lines     = 24,
	.phy.dpi.data_lines     = 24,
};
};
+2 −2
Original line number Original line Diff line number Diff line
@@ -444,7 +444,7 @@ static struct twl4030_gpio_platform_data igep_twl4030_gpio_pdata = {
	.setup		= igep_twl_gpio_setup,
	.setup		= igep_twl_gpio_setup,
};
};


static struct panel_dvi_platform_data dvi_panel = {
static struct tfp410_platform_data dvi_panel = {
	.i2c_bus_num		= 3,
	.i2c_bus_num		= 3,
	.power_down_gpio	= IGEP2_GPIO_DVI_PUP,
	.power_down_gpio	= IGEP2_GPIO_DVI_PUP,
};
};
@@ -452,7 +452,7 @@ static struct panel_dvi_platform_data dvi_panel = {
static struct omap_dss_device igep2_dvi_device = {
static struct omap_dss_device igep2_dvi_device = {
	.type			= OMAP_DISPLAY_TYPE_DPI,
	.type			= OMAP_DISPLAY_TYPE_DPI,
	.name			= "dvi",
	.name			= "dvi",
	.driver_name		= "dvi",
	.driver_name		= "tfp410",
	.data			= &dvi_panel,
	.data			= &dvi_panel,
	.phy.dpi.data_lines	= 24,
	.phy.dpi.data_lines	= 24,
};
};
Loading