Home | History | Annotate | Download | only in drm

Lines Matching refs:new_blob

706 	struct drm_property_blob *new_blob = NULL;
715 new_blob = drm_property_create_blob(dev, length, data);
716 if (IS_ERR(new_blob))
717 return PTR_ERR(new_blob);
723 new_blob ?
724 new_blob->base.id : 0);
730 *replace = new_blob;
735 drm_property_blob_put(new_blob);
743 * @new_blob: the new blob to replace with
748 struct drm_property_blob *new_blob)
752 if (old_blob == new_blob)
756 if (new_blob)
757 drm_property_blob_get(new_blob);
758 *blob = new_blob;