Re: [PATCH] drm/radeon/evergreen_cs: fix missing break in switch statement

2019-02-18 Thread Alex Deucher
On Fri, Feb 15, 2019 at 5:40 PM Gustavo A. R. Silva wrote: > > Add missing break statement in order to prevent the code from falling > through to case CB_TARGET_MASK. > > This bug was found thanks to the ongoing efforts to enable > -Wimplicit-fallthrough. > > Fixes: dd220a00e8bd ("drm/radeon/kms:

[PATCH] drm/radeon/evergreen_cs: fix missing break in switch statement

2019-02-15 Thread Gustavo A. R. Silva
Add missing break statement in order to prevent the code from falling through to case CB_TARGET_MASK. This bug was found thanks to the ongoing efforts to enable -Wimplicit-fallthrough. Fixes: dd220a00e8bd ("drm/radeon/kms: add support for streamout v7") Cc: sta...@vger.kernel.org Signed-off-by: G