Gerd Hoffmann
2018-Aug-09 15:29 UTC
[PATCH] drm/cirrus: Replace ttm_bo_unref with ttm_bo_put
> Signed-off-by: Thomas Zimmermann <tzimmermann at suse.de> > --- > drivers/gpu/drm/cirrus/cirrus_main.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/cirrus/cirrus_main.c b/drivers/gpu/drm/cirrus/cirrus_main.c > index 60d54e10a34d..57f8fe6d020b 100644 > --- a/drivers/gpu/drm/cirrus/cirrus_main.c > +++ b/drivers/gpu/drm/cirrus/cirrus_main.c > @@ -269,7 +269,7 @@ static void cirrus_bo_unref(struct cirrus_bo **bo) > return; > > tbo = &((*bo)->bo); > - ttm_bo_unref(&tbo); > + ttm_bo_put(tbo);Fails to build too. cheers, Gerd
Seemingly Similar Threads
- [PATCH] drm/bochs: Replace ttm_bo_unref with ttm_bo_put
- [PATCH] drm/qxl: Replace ttm_bo_unref with ttm_bo_put
- [PATCH] drm/cirrus: rewrite and modernize driver.
- [PATCH v3 5/5] drm/cirrus: rewrite and modernize driver.
- [PATCH v2 6/6] drm/cirrus: rewrite and modernize driver.