Module: Mesa Branch: master Commit: 69e6eab6533ff48f72223cd21ef640242c52598b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=69e6eab6533ff48f72223cd21ef640242c52598b
Author: Marek Olšák <[email protected]> Date: Fri May 5 01:16:57 2017 +0200 winsys/amdgpu: fix Polaris12 (RX 550) breakage reported by Greg White. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=100892 Cc: 17.1 <[email protected]> --- src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c b/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c index f3a0c958ed..44e0f62889 100644 --- a/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c +++ b/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c @@ -310,6 +310,7 @@ static bool do_winsys_init(struct amdgpu_winsys *ws, int fd) case CHIP_POLARIS12: ws->family = FAMILY_VI; ws->rev_id = VI_POLARIS12_V_A0; + break; case CHIP_VEGA10: ws->family = FAMILY_AI; ws->rev_id = AI_VEGA10_P_A0; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
