On Mon, Mar 12, 2018 at 10:42:47AM -0700, Sinclair Yeh wrote:
Hi Daniel,
On Mon, Mar 12, 2018 at 06:34:43PM +0100, Daniel Vetter wrote:
On Sun, Mar 11, 2018 at 05:33:13PM -0600, Haneen Mohammed wrote:
This patch replace instances of drm_framebuffer_unreference with _put() suffix, because it is shorter and consistent with the kernel use of *_get/put() suffixes. This was done with the following Coccinelle script:
@r@ expression e; @@
( -drm_framebuffer_reference(e); +drm_framebuffer_get(e); | -drm_framebuffer_unreference(e); +drm_framebuffer_put(e); )
Signed-off-by: Haneen Mohammed hamohammed.sa@gmail.com
Reviewed-by: Daniel Vetter daniel.vetter@ffwll.ch
Sinclair/Thomas: Ok if I pull this in through drm-misc? Makes outreachy applicant book-keeping easier since iirc the vmwgfx tree isn't in linux-next. But ok if you want to merge it too.
Yes, drm-misc is fine.
Thanks, applied. -Daniel