|
@@ -467,7 +467,7 @@ struct drm_crtc {
|
|
int framedur_ns, linedur_ns, pixeldur_ns;
|
|
int framedur_ns, linedur_ns, pixeldur_ns;
|
|
|
|
|
|
/* if you are using the helper */
|
|
/* if you are using the helper */
|
|
- void *helper_private;
|
|
|
|
|
|
+ const void *helper_private;
|
|
|
|
|
|
struct drm_object_properties properties;
|
|
struct drm_object_properties properties;
|
|
|
|
|
|
@@ -597,7 +597,7 @@ struct drm_encoder {
|
|
struct drm_crtc *crtc;
|
|
struct drm_crtc *crtc;
|
|
struct drm_bridge *bridge;
|
|
struct drm_bridge *bridge;
|
|
const struct drm_encoder_funcs *funcs;
|
|
const struct drm_encoder_funcs *funcs;
|
|
- void *helper_private;
|
|
|
|
|
|
+ const void *helper_private;
|
|
};
|
|
};
|
|
|
|
|
|
/* should we poll this connector for connects and disconnects */
|
|
/* should we poll this connector for connects and disconnects */
|
|
@@ -701,7 +701,7 @@ struct drm_connector {
|
|
/* requested DPMS state */
|
|
/* requested DPMS state */
|
|
int dpms;
|
|
int dpms;
|
|
|
|
|
|
- void *helper_private;
|
|
|
|
|
|
+ const void *helper_private;
|
|
|
|
|
|
/* forced on connector */
|
|
/* forced on connector */
|
|
struct drm_cmdline_mode cmdline_mode;
|
|
struct drm_cmdline_mode cmdline_mode;
|
|
@@ -864,7 +864,7 @@ struct drm_plane {
|
|
|
|
|
|
enum drm_plane_type type;
|
|
enum drm_plane_type type;
|
|
|
|
|
|
- void *helper_private;
|
|
|
|
|
|
+ const void *helper_private;
|
|
|
|
|
|
struct drm_plane_state *state;
|
|
struct drm_plane_state *state;
|
|
};
|
|
};
|