summaryrefslogtreecommitdiff
path: root/linux-core/drm_crtc.h
diff options
context:
space:
mode:
authorMaarten Maathuis <madman2003@gmail.com>2008-07-20 14:51:22 +0200
committerMaarten Maathuis <madman2003@gmail.com>2008-07-20 14:51:22 +0200
commit3ef1d05001a9e28ed52536de7e020323d8d34d83 (patch)
tree360d1fb21e551b3758109ff0c920935b15eb31d1 /linux-core/drm_crtc.h
parent65803e53a696347e38d7f6c2c8dc186c6764ff03 (diff)
modesetting-101: set_property should return an int, not a bool
Diffstat (limited to 'linux-core/drm_crtc.h')
-rw-r--r--linux-core/drm_crtc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_crtc.h b/linux-core/drm_crtc.h
index d88c6149..117b7213 100644
--- a/linux-core/drm_crtc.h
+++ b/linux-core/drm_crtc.h
@@ -375,7 +375,7 @@ struct drm_connector_funcs {
void (*restore)(struct drm_connector *connector);
enum drm_connector_status (*detect)(struct drm_connector *connector);
void (*fill_modes)(struct drm_connector *connector, uint32_t max_width, uint32_t max_height);
- bool (*set_property)(struct drm_connector *connector, struct drm_property *property,
+ int (*set_property)(struct drm_connector *connector, struct drm_property *property,
uint64_t val);
void (*destroy)(struct drm_connector *connector);
};