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>
This commit is contained in:
parent
59956d35a8
commit
2fa7b74c7b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue