diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-06-11 02:56:51 -0400 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2013-06-28 08:13:56 -0400 |
commit | 2fa7b74c7b39b66c378be151a854e0b8a705765c (patch) | |
tree | c1490facd8f535c0b290e7b70be89db886d74073 | |
parent | 59956d35a8618235ea715280b49447bb36f2c975 (diff) |
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>
-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 01cb9a03aac0..b1ef8e7ff9c9 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, | |||
1064 | default: | 1064 | default: |
1065 | DRM_ERROR("invalid state.\n"); | 1065 | DRM_ERROR("invalid state.\n"); |
1066 | goto err_status; | 1066 | goto err_status; |
1067 | break; | ||
1068 | } | 1067 | } |
1069 | 1068 | ||
1070 | return true; | 1069 | return true; |