r600g: Remove unused variables.

Fixes these GCC warnings.
radeon.c: In function 'radeon_new':
radeon.c:59: warning: unused variable 'k'
radeon.c:59: warning: unused variable 'j'
radeon.c:59: warning: unused variable 'id'
radeon.c:59: warning: unused variable 'i'
This commit is contained in:
Vinson Lee 2010-09-26 03:18:12 -07:00
parent 51bfd4e34a
commit 15f16328be

View file

@ -56,7 +56,7 @@ static int radeon_get_device(struct radeon *radeon)
struct radeon *radeon_new(int fd, unsigned device)
{
struct radeon *radeon;
int r, i, id, j, k;
int r;
radeon = calloc(1, sizeof(*radeon));
if (radeon == NULL) {