Browse Source

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>
Sachin Kamat 12 years ago
parent
commit
2fa7b74c7b
1 changed files with 0 additions and 1 deletions
  1. 0 1
      drivers/gpu/drm/exynos/exynos_drm_ipp.c

+ 0 - 1
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;