diff options
author | Olof Johansson <olof@lixom.net> | 2013-11-14 13:09:24 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-11-14 18:00:19 -0800 |
commit | ba52b7d4afaec172073a4169e1d6522552b2979c (patch) | |
tree | 4ceb448440522fe9cd557f519b222599c595cc8b | |
parent | be9b01675e1d178040bae531bfc0216ebbd0f9b8 (diff) |
video: exynos_mipi_dsim: Remove unused variable
commit 7e0be9f9f7cba3356f75b86737dbe3a005da067e ('video: exynos_mipi_dsim:
Use the generic PHY driver') resulted in a warning about an unused
variable:
drivers/video/exynos/exynos_mipi_dsi.c:144:26: warning: unused variable
'pdev' [-Wunused-variable]
It is indeed unused; remove it.
Signed-off-by: Olof Johansson <olof@lixom.net>
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
Acked-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r-- | drivers/video/exynos/exynos_mipi_dsi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/video/exynos/exynos_mipi_dsi.c b/drivers/video/exynos/exynos_mipi_dsi.c index 00b3a52c1d68..cee9602f9a7b 100644 --- a/drivers/video/exynos/exynos_mipi_dsi.c +++ b/drivers/video/exynos/exynos_mipi_dsi.c @@ -141,7 +141,6 @@ static int exynos_mipi_dsi_early_blank_mode(struct mipi_dsim_device *dsim, static int exynos_mipi_dsi_blank_mode(struct mipi_dsim_device *dsim, int power) { - struct platform_device *pdev = to_platform_device(dsim->dev); struct mipi_dsim_lcd_driver *client_drv = dsim->dsim_lcd_drv; struct mipi_dsim_lcd_device *client_dev = dsim->dsim_lcd_dev; |