Lines Matching refs:new_blob
700 struct drm_property_blob *new_blob = NULL;
709 new_blob = drm_property_create_blob(dev, length, data);
710 if (IS_ERR(new_blob))
711 return PTR_ERR(new_blob);
717 new_blob ?
718 new_blob->base.id : 0);
724 *replace = new_blob;
729 drm_property_blob_put(new_blob);
737 * @new_blob: the new blob to replace with
742 struct drm_property_blob *new_blob)
746 if (old_blob == new_blob)
750 if (new_blob)
751 drm_property_blob_get(new_blob);
752 *blob = new_blob;