summaryrefslogtreecommitdiffstats
path: root/src/gallium/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/state_tracker/drm_driver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/include/state_tracker/drm_driver.h b/src/gallium/include/state_tracker/drm_driver.h
index 06f41e7..deccfb5 100644
--- a/src/gallium/include/state_tracker/drm_driver.h
+++ b/src/gallium/include/state_tracker/drm_driver.h
@@ -88,7 +88,7 @@ struct drm_driver_descriptor
/**
* Identifying prefix/suffix of the binary, used by the pipe-loader.
*/
- const char *name;
+ const char *driver_name;
/**
* Create a pipe srcreen.
@@ -113,9 +113,9 @@ extern struct drm_driver_descriptor driver_descriptor;
/**
* Instantiate a drm_driver_descriptor struct.
*/
-#define DRM_DRIVER_DESCRIPTOR(name_str, func, conf) \
+#define DRM_DRIVER_DESCRIPTOR(driver_name_str, func, conf) \
struct drm_driver_descriptor driver_descriptor = { \
- .name = name_str, \
+ .driver_name = driver_name_str, \
.create_screen = func, \
.configuration = (conf), \
};