diff options
| author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2009-09-15 16:57:31 -0400 |
|---|---|---|
| committer | Eric Anholt <eric@anholt.net> | 2009-11-05 17:47:06 -0500 |
| commit | 7a9c906094de8b3dc227de448019dbc386cd25d4 (patch) | |
| tree | bf7ebc3d31e27b449ec0e000bfd65eddf758fc6b /include | |
| parent | 97f5ab6651a996ecefed73e41684422f3b29d9a8 (diff) | |
drm: make drm_mode_object_find typesafe
I've wasted half a day hunting a bug that could easily be spotted by
gcc. Prevent this from reoccurring.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/drm/drm_crtc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index b69347b8904f..bfcc60d101db 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
| @@ -711,7 +711,8 @@ extern void drm_mode_connector_detach_encoder(struct drm_connector *connector, | |||
| 711 | struct drm_encoder *encoder); | 711 | struct drm_encoder *encoder); |
| 712 | extern bool drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc, | 712 | extern bool drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc, |
| 713 | int gamma_size); | 713 | int gamma_size); |
| 714 | extern void *drm_mode_object_find(struct drm_device *dev, uint32_t id, uint32_t type); | 714 | extern struct drm_mode_object *drm_mode_object_find(struct drm_device *dev, |
| 715 | uint32_t id, uint32_t type); | ||
| 715 | /* IOCTLs */ | 716 | /* IOCTLs */ |
| 716 | extern int drm_mode_getresources(struct drm_device *dev, | 717 | extern int drm_mode_getresources(struct drm_device *dev, |
| 717 | void *data, struct drm_file *file_priv); | 718 | void *data, struct drm_file *file_priv); |
