[PATCH V2] drm: simple_kms_helper: Add prepare_fb and cleanup_fb hooks

2016-10-02 Thread Marek Vasut
On 09/30/2016 11:58 AM, Daniel Vetter wrote: > On Thu, Sep 29, 2016 at 11:58 PM, Marek Vasut wrote: >> + /** >> +* @prepare_fb: >> +* >> +* Optional, called by struct &drm_plane_helper_funcs ->prepare_fb . >> +*/ > > > You've lost the hint that people should

[PATCH V2] drm: simple_kms_helper: Add prepare_fb and cleanup_fb hooks

2016-09-30 Thread Daniel Vetter
On Thu, Sep 29, 2016 at 11:58 PM, Marek Vasut wrote: > + /** > +* @prepare_fb: > +* > +* Optional, called by struct &drm_plane_helper_funcs ->prepare_fb . > +*/ You've lost the hint that people should look there for what this hook should do. Same with cleanu

[PATCH V2] drm: simple_kms_helper: Add prepare_fb and cleanup_fb hooks

2016-09-29 Thread Marek Vasut
Add .prepare_fb and .cleanup_fb plane hooks into the drm_simple_kms. These can be used by drivers to call ie. the drm_fb_cma_setup_fence() helper. Signed-off-by: Marek Vasut Cc: Noralf Trønnes Cc: Daniel Vetter Cc: David Airlie --- V2: Fix the documentation style to play well with make htmldo