diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-06-11 12:26:51 +0530 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2013-06-28 21:13:56 +0900 |
commit | 2fa7b74c7b39b66c378be151a854e0b8a705765c (patch) | |
tree | c1490facd8f535c0b290e7b70be89db886d74073 /drivers/gpu/drm/exynos | |
parent | 59956d35a8618235ea715280b49447bb36f2c975 (diff) | |
download | op-kernel-dev-2fa7b74c7b39b66c378be151a854e0b8a705765c.zip op-kernel-dev-2fa7b74c7b39b66c378be151a854e0b8a705765c.tar.gz |
drm/exynos: exynos_drm_ipp: Remove redundant break statement
'break' after goto statement is redundant. Silences the following
message:
drivers/gpu/drm/exynos/exynos_drm_ipp.c:1067 exynos_drm_ipp_check_valid()
info: ignoring unreachable code.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_ipp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_ipp.c b/drivers/gpu/drm/exynos/exynos_drm_ipp.c index 01cb9a0..b1ef8e7 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_ipp.c +++ b/drivers/gpu/drm/exynos/exynos_drm_ipp.c @@ -1064,7 +1064,6 @@ static bool exynos_drm_ipp_check_valid(struct device *dev, default: DRM_ERROR("invalid state.\n"); goto err_status; - break; } return true; |