Lines Matching defs:new_blob
697 struct drm_property_blob *new_blob = NULL;
706 new_blob = drm_property_create_blob(dev, length, data);
707 if (IS_ERR(new_blob))
708 return PTR_ERR(new_blob);
714 new_blob ?
715 new_blob->base.id : 0);
721 *replace = new_blob;
726 drm_property_blob_put(new_blob);
734 * @new_blob: the new blob to replace with
739 struct drm_property_blob *new_blob)
743 if (old_blob == new_blob)
747 if (new_blob)
748 drm_property_blob_get(new_blob);
749 *blob = new_blob;