OMAP: DSS2: Remove pdev argument from dpi_init

dpi_init() does not use the pdev argument for anything. Remove it.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
Tomi Valkeinen 2011-03-02 12:32:48 +02:00
parent 42c9dee821
commit 277b2881c3
3 changed files with 4 additions and 4 deletions

View File

@ -191,7 +191,7 @@ static int omap_dss_probe(struct platform_device *pdev)
goto err_rfbi;
}
r = dpi_init(pdev);
r = dpi_init();
if (r) {
DSSERR("Failed to initialize dpi\n");
goto err_dpi;

View File

@ -319,7 +319,7 @@ int dpi_init_display(struct omap_dss_device *dssdev)
return 0;
}
int dpi_init(struct platform_device *pdev)
int dpi_init(void)
{
return 0;
}

View File

@ -309,11 +309,11 @@ static inline void dsi_wait_pll_hsdiv_dsi_active(void)
/* DPI */
#ifdef CONFIG_OMAP2_DSS_DPI
int dpi_init(struct platform_device *pdev);
int dpi_init(void);
void dpi_exit(void);
int dpi_init_display(struct omap_dss_device *dssdev);
#else
static inline int dpi_init(struct platform_device *pdev)
static inline int dpi_init(void)
{
return 0;
}