summaryrefslogtreecommitdiff
path: root/radeon/radeon_bo_int.h
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-08-15 17:12:13 +0100
committerEmil Velikov <emil.l.velikov@gmail.com>2015-09-04 21:39:06 +0100
commitec2b105492cae093cc78003239e9b6816d1a7384 (patch)
treeeb6c542a1467f75e40c7b4320cea893705cb138e /radeon/radeon_bo_int.h
parentaecd5a1879b39bc2b9b46a0a217aa4ce3d97bc8c (diff)
radeon: cleanup bo/cs func tables
Annotate the data as static const and use C99 designated initializers. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'radeon/radeon_bo_int.h')
-rw-r--r--radeon/radeon_bo_int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/radeon/radeon_bo_int.h b/radeon/radeon_bo_int.h
index 9589ead1..de981b0a 100644
--- a/radeon/radeon_bo_int.h
+++ b/radeon/radeon_bo_int.h
@@ -2,7 +2,7 @@
#define RADEON_BO_INT
struct radeon_bo_manager {
- struct radeon_bo_funcs *funcs;
+ const struct radeon_bo_funcs *funcs;
int fd;
};