[PATCH 04/25] drm/fb_helper: Create wrappers for blit, copyarea and fillrect funcs

2015-07-13 Thread Archit Taneja
drm drivers that emulate fbdev populate their fb_fillrect, fb_copyarea and fb_imageblit fb_ops with the help of cfb_* or sys_* fbdev core helper functions. Create drm_fb_helper functions that wrap around these calls. This is part of an effort to prevent drm drivers from calling fbdev functions di

[PATCH 04/25] drm/fb_helper: Create wrappers for blit, copyarea and fillrect funcs

2015-07-13 Thread Daniel Vetter
On Mon, Jul 13, 2015 at 12:08:00PM +0530, Archit Taneja wrote: > drm drivers that emulate fbdev populate their fb_fillrect, fb_copyarea > and fb_imageblit fb_ops with the help of cfb_* or sys_* fbdev core > helper functions. > > Create drm_fb_helper functions that wrap around these calls. > > Thi