diff options
author | Andreas Boll <andreas.boll.dev@gmail.com> | 2012-08-28 12:49:45 +0200 |
---|---|---|
committer | Andreas Boll <andreas.boll.dev@gmail.com> | 2012-10-24 18:25:58 +0200 |
commit | bc494b310d76f701798aee0f2b0b472d608cbfaf (patch) | |
tree | 60053ab576c126ede537b6a5807daf81504938e6 /radeon | |
parent | a4cb7233a8da171e53b48b376be5c1265c29a612 (diff) |
radeon: fix unused-function warning
radeon_cs_gem.c:333:13: warning: 'cs_gem_dump_bof' defined but
not used [-Wunused-function]
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'radeon')
-rw-r--r-- | radeon/radeon_cs_gem.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/radeon/radeon_cs_gem.c b/radeon/radeon_cs_gem.c index 9834bcf1..b9631400 100644 --- a/radeon/radeon_cs_gem.c +++ b/radeon/radeon_cs_gem.c @@ -330,6 +330,7 @@ static int cs_gem_end(struct radeon_cs_int *cs, return 0; } +#if CS_BOF_DUMP static void cs_gem_dump_bof(struct radeon_cs_int *cs) { struct cs_gem *csg = (struct cs_gem*)cs; @@ -415,6 +416,7 @@ out_err: bof_decref(device_id); bof_decref(root); } +#endif static int cs_gem_emit(struct radeon_cs_int *cs) { |