drm: Allow creating blob properties without copy
Make the data parameter to drm_property_create_blob optional; if omitted, the copy will be skipped and the data will be empty. Signed-off-by: Daniel Stone <daniels@collabora.com> Reviewed-by: Maarten Lankhorst <maarten.lankhorst@intel.com> Tested-by: Sean Paul <seanpaul@chromium.org> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
934a8a899a
commit
99531d9bb7
|
@ -4145,6 +4145,16 @@ done:
|
|||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* drm_property_create_blob - Create new blob property
|
||||
*
|
||||
* Creates a new blob property for a specified DRM device, optionally
|
||||
* copying data.
|
||||
*
|
||||
* @dev: DRM device to create property for
|
||||
* @length: Length to allocate for blob data
|
||||
* @data: If specified, copies data into blob
|
||||
*/
|
||||
struct drm_property_blob *
|
||||
drm_property_create_blob(struct drm_device *dev, size_t length,
|
||||
const void *data)
|
||||
|
@ -4152,7 +4162,7 @@ drm_property_create_blob(struct drm_device *dev, size_t length,
|
|||
struct drm_property_blob *blob;
|
||||
int ret;
|
||||
|
||||
if (!length || !data)
|
||||
if (!length)
|
||||
return NULL;
|
||||
|
||||
blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
|
||||
|
@ -4162,6 +4172,7 @@ drm_property_create_blob(struct drm_device *dev, size_t length,
|
|||
blob->length = length;
|
||||
blob->dev = dev;
|
||||
|
||||
if (data)
|
||||
memcpy(blob->data, data, length);
|
||||
|
||||
mutex_lock(&dev->mode_config.blob_lock);
|
||||
|
|
Loading…
Reference in New Issue