[PATCH] drm: Add standardized boolean props

2015-01-22 Thread Thierry Reding
On Wed, Jan 21, 2015 at 08:47:38AM +0100, Daniel Vetter wrote: [...] > diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c [...] > @@ -3738,6 +3738,24 @@ struct drm_property *drm_property_create_range(struct > drm_device *dev, int flags > } > EXPORT_SYMBOL(drm_property_create_ra

[PATCH] drm: Add standardized boolean props

2015-01-21 Thread Rob Clark
On Wed, Jan 21, 2015 at 2:47 AM, Daniel Vetter wrote: > Not a new type exposed to userspace, just a standard way to create > them since between range, bitmask and enum there's 3 different ways to > pull out a boolean prop. > > Also add the kerneldoc for the recently added new prop types, which >

[PATCH] drm: Add standardized boolean props

2015-01-21 Thread Daniel Vetter
Not a new type exposed to userspace, just a standard way to create them since between range, bitmask and enum there's 3 different ways to pull out a boolean prop. Also add the kerneldoc for the recently added new prop types, which Rob forgot all about. v2: Fixup kerneldoc, spotted by Rob. Cc: Ro