diff options
author | Thierry Reding <treding@nvidia.com> | 2014-12-19 17:55:08 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2015-01-27 12:14:49 +0300 |
commit | 328ec69e7f9e7192c3f7653a5ec46d6e9a5fe60d (patch) | |
tree | 3843a5707acfdffd7affd56cc570bba3c757de98 /drivers/gpu/drm/tegra/drm.h | |
parent | ea130b240de820559408eba12b00412326af36ec (diff) | |
download | linux-328ec69e7f9e7192c3f7653a5ec46d6e9a5fe60d.tar.xz |
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/drm.h')
-rw-r--r-- | drivers/gpu/drm/tegra/drm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tegra/drm.h b/drivers/gpu/drm/tegra/drm.h index 699211a89a2e..bf1c47ec46b6 100644 --- a/drivers/gpu/drm/tegra/drm.h +++ b/drivers/gpu/drm/tegra/drm.h @@ -213,9 +213,9 @@ int tegra_dc_rgb_exit(struct tegra_dc *dc); /* from output.c */ int tegra_output_probe(struct tegra_output *output); -int tegra_output_remove(struct tegra_output *output); +void tegra_output_remove(struct tegra_output *output); int tegra_output_init(struct drm_device *drm, struct tegra_output *output); -int tegra_output_exit(struct tegra_output *output); +void tegra_output_exit(struct tegra_output *output); int tegra_output_connector_get_modes(struct drm_connector *connector); struct drm_encoder * |