diff options
-rw-r--r-- | src/gallium/include/state_tracker/drm_driver.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/include/state_tracker/drm_driver.h b/src/gallium/include/state_tracker/drm_driver.h index deccfb5a17d..c80fb09dbc4 100644 --- a/src/gallium/include/state_tracker/drm_driver.h +++ b/src/gallium/include/state_tracker/drm_driver.h @@ -108,13 +108,13 @@ struct drm_driver_descriptor const struct drm_conf_ret *(*configuration) (enum drm_conf conf); }; -extern struct drm_driver_descriptor driver_descriptor; +extern const struct drm_driver_descriptor driver_descriptor; /** * Instantiate a drm_driver_descriptor struct. */ #define DRM_DRIVER_DESCRIPTOR(driver_name_str, func, conf) \ -struct drm_driver_descriptor driver_descriptor = { \ +const struct drm_driver_descriptor driver_descriptor = { \ .driver_name = driver_name_str, \ .create_screen = func, \ .configuration = (conf), \ |