diff options
author | Marek Olšák <[email protected]> | 2010-08-09 14:57:56 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-08-09 15:00:19 +0200 |
commit | 2cad5350f9691d4d2c18a637548735925fa0ee97 (patch) | |
tree | f8f8f3af3cd555054de7190a3870892d937f4b99 /src/gallium/drivers/r600/r600_asm.c | |
parent | 00963589b4d92460e3ae2c1557a5d816b5c67a6d (diff) |
r600g: fix some warnings
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index f1dc3dc3a96..16c98504ad9 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -287,7 +287,7 @@ static int r600_bc_tex_build(struct r600_bc *bc, struct r600_bc_tex *tex, unsign return 0; } -int r600_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id) +static int r600_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id) { unsigned i; @@ -331,7 +331,7 @@ int r600_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id) return 0; } -int r600_bc_cf_build(struct r600_bc *bc, struct r600_bc_cf *cf) +static int r600_bc_cf_build(struct r600_bc *bc, struct r600_bc_cf *cf) { unsigned id = cf->id; |