From: Henri Verbeet Date: Sat, 9 Jul 2011 15:18:59 +0000 (+0200) Subject: r600g: Fix the type of the family field in r600_pipe_context. X-Git-Tag: 062012170305~4981^2~85 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=949896b82f19f72333e7f6c132bd55e023f0170f;p=profile%2Fivi%2Fmesa.git r600g: Fix the type of the family field in r600_pipe_context. Signed-off-by: Henri Verbeet --- diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index c58c2f7..b51fa24 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -175,7 +175,7 @@ struct r600_pipe_fences { struct r600_pipe_context { struct pipe_context context; struct blitter_context *blitter; - unsigned family; + enum radeon_family family; void *custom_dsa_flush; struct r600_screen *screen; struct radeon *radeon;