Name
drm_property_create_range — 
     create a new unsigned ranged property type
 
Synopsis
| struct drm_property * drm_property_create_range ( | struct drm_device * dev, | 
|  | int flags, | 
|  | const char * name, | 
|  | uint64_t min, | 
|  | uint64_t max ); | 
 
Arguments
- dev
- 
     drm device
     
- flags
- 
     flags specifying the property type
     
- name
- 
     name of the property
     
- min
- 
     minimum value of the property
     
- max
- 
     maximum value of the property
     
Description
   This creates a new generic drm property which can then be attached to a drm
   object with drm_object_attach_property. The returned property object must be
   freed with drm_property_destroy.
   
   Userspace is allowed to set any unsigned integer value in the (min, max)
   range inclusive.
Returns
   A pointer to the newly created property on success, NULL on failure.