diff options
author | Thierry Reding <treding@nvidia.com> | 2014-12-19 15:55:08 +0100 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2015-01-27 10:14:49 +0100 |
commit | 328ec69e7f9e7192c3f7653a5ec46d6e9a5fe60d (patch) | |
tree | 3843a5707acfdffd7affd56cc570bba3c757de98 /drivers/gpu/drm/tegra/dsi.c | |
parent | drm/tegra: Remove remnants of the output midlayer (diff) | |
download | linux-328ec69e7f9e7192c3f7653a5ec46d6e9a5fe60d.tar.xz linux-328ec69e7f9e7192c3f7653a5ec46d6e9a5fe60d.zip |
drm/tegra: Output cleanup functions cannot fail
The tegra_output_exit() and tegra_output_remove() functions cannot fail,
so make them return void.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/dsi.c')
-rw-r--r-- | drivers/gpu/drm/tegra/dsi.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/gpu/drm/tegra/dsi.c b/drivers/gpu/drm/tegra/dsi.c index 1401d0d7108a..23f4b0fc9734 100644 --- a/drivers/gpu/drm/tegra/dsi.c +++ b/drivers/gpu/drm/tegra/dsi.c @@ -1577,11 +1577,7 @@ static int tegra_dsi_remove(struct platform_device *pdev) return err; } - err = tegra_output_remove(&dsi->output); - if (err < 0) { - dev_err(&pdev->dev, "failed to remove output: %d\n", err); - return err; - } + tegra_output_remove(&dsi->output); mipi_dsi_host_unregister(&dsi->host); tegra_mipi_free(dsi->mipi); |