From: Marek Olšák Date: Wed, 10 Feb 2016 18:41:37 +0000 (+0100) Subject: winsys/radeon: fix the num_tile_pipes comment to silence warnings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=796ee76e2eeabbeed9ab41b012363cabd5497b33;p=mesa.git winsys/radeon: fix the num_tile_pipes comment to silence warnings --- diff --git a/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c b/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c index 73ef0519a8b..8151c447065 100644 --- a/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c +++ b/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c @@ -406,9 +406,9 @@ static boolean do_winsys_init(struct radeon_drm_winsys *ws) &ws->info.num_tile_pipes); /* "num_tiles_pipes" must be equal to the number of pipes (Px) in the - /* pipe config field of the GB_TILE_MODE array. Only one card (Tahiti) - /* reports a different value (12). Fix it by setting what's in the - /* GB_TILE_MODE array (8). + * pipe config field of the GB_TILE_MODE array. Only one card (Tahiti) + * reports a different value (12). Fix it by setting what's in the + * GB_TILE_MODE array (8). */ if (ws->gen == DRV_SI && ws->info.num_tile_pipes == 12) ws->info.num_tile_pipes = 8;