[PATCH RESEND v2 06/25] drm/fb_helper: Create a wrapper for remove_conflicting_framebuffers

2015-07-29 Thread Archit Taneja
On 07/29/2015 12:19 AM, Daniel Vetter wrote: > On Tue, Jul 28, 2015 at 08:46:24PM +0200, Daniel Vetter wrote: >> On Wed, Jul 22, 2015 at 02:58:01PM +0530, Archit Taneja wrote: >>> Some drm drivers call remove_conflicting_framebuffers. Create a >>> drm_fb_helper function that wraps around these

[PATCH RESEND v2 06/25] drm/fb_helper: Create a wrapper for remove_conflicting_framebuffers

2015-07-29 Thread Archit Taneja
On 07/29/2015 12:16 AM, Daniel Vetter wrote: > On Wed, Jul 22, 2015 at 02:58:01PM +0530, Archit Taneja wrote: >> Some drm drivers call remove_conflicting_framebuffers. Create a >> drm_fb_helper function that wraps around these calls. >> >> This is part of an effort to prevent drm drivers from

[PATCH RESEND v2 06/25] drm/fb_helper: Create a wrapper for remove_conflicting_framebuffers

2015-07-29 Thread Daniel Vetter
On Wed, Jul 29, 2015 at 09:50:56AM +0530, Archit Taneja wrote: > > > On 07/29/2015 12:19 AM, Daniel Vetter wrote: > >On Tue, Jul 28, 2015 at 08:46:24PM +0200, Daniel Vetter wrote: > >>On Wed, Jul 22, 2015 at 02:58:01PM +0530, Archit Taneja wrote: > >>>Some drm drivers call

[PATCH RESEND v2 06/25] drm/fb_helper: Create a wrapper for remove_conflicting_framebuffers

2015-07-29 Thread Daniel Vetter
On Wed, Jul 29, 2015 at 09:49:04AM +0530, Archit Taneja wrote: > > > On 07/29/2015 12:16 AM, Daniel Vetter wrote: > >On Wed, Jul 22, 2015 at 02:58:01PM +0530, Archit Taneja wrote: > >>Some drm drivers call remove_conflicting_framebuffers. Create a > >>drm_fb_helper function that wraps around

[PATCH RESEND v2 06/25] drm/fb_helper: Create a wrapper for remove_conflicting_framebuffers

2015-07-28 Thread Daniel Vetter
On Tue, Jul 28, 2015 at 08:46:24PM +0200, Daniel Vetter wrote: > On Wed, Jul 22, 2015 at 02:58:01PM +0530, Archit Taneja wrote: > > Some drm drivers call remove_conflicting_framebuffers. Create a > > drm_fb_helper function that wraps around these calls. > > > > This is part of an effort to

[PATCH RESEND v2 06/25] drm/fb_helper: Create a wrapper for remove_conflicting_framebuffers

2015-07-28 Thread Daniel Vetter
On Wed, Jul 22, 2015 at 02:58:01PM +0530, Archit Taneja wrote: > Some drm drivers call remove_conflicting_framebuffers. Create a > drm_fb_helper function that wraps around these calls. > > This is part of an effort to prevent drm drivers from calling fbdev > functions directly, in order to make

[PATCH RESEND v2 06/25] drm/fb_helper: Create a wrapper for remove_conflicting_framebuffers

2015-07-22 Thread Archit Taneja
Some drm drivers call remove_conflicting_framebuffers. Create a drm_fb_helper function that wraps around these calls. This is part of an effort to prevent drm drivers from calling fbdev functions directly, in order to make fbdev emulation a top level drm option. v2: - Added kerneldocs - Follow