Message ID | 20161228105120.14500-1-chris@chris-wilson.co.uk (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Wed, Dec 28, 2016 at 10:51:20AM +0000, Chris Wilson wrote: > A couple of parameters slipped through the kerneldoc net. > > Reported-by: kbuild test robot <fengguang.wu@intel.com> > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Applied to drm-misc, thanks. -Daniel > --- > drivers/gpu/drm/drm_mm.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/gpu/drm/drm_mm.c b/drivers/gpu/drm/drm_mm.c > index 21bd2e13738b..54a8446ad117 100644 > --- a/drivers/gpu/drm/drm_mm.c > +++ b/drivers/gpu/drm/drm_mm.c > @@ -799,6 +799,7 @@ EXPORT_SYMBOL(drm_mm_scan_init_with_range); > > /** > * drm_mm_scan_add_block - add a node to the scan list > + * @scan: the active drm_mm scanner > * @node: drm_mm_node to add > * > * Add a node to the scan list that might be freed to make space for the desired > @@ -856,6 +857,7 @@ EXPORT_SYMBOL(drm_mm_scan_add_block); > > /** > * drm_mm_scan_remove_block - remove a node from the scan list > + * @scan: the active drm_mm scanner > * @node: drm_mm_node to remove > * > * Nodes _must_ be removed in exactly the reverse order from the scan list as > -- > 2.11.0 >
diff --git a/drivers/gpu/drm/drm_mm.c b/drivers/gpu/drm/drm_mm.c index 21bd2e13738b..54a8446ad117 100644 --- a/drivers/gpu/drm/drm_mm.c +++ b/drivers/gpu/drm/drm_mm.c @@ -799,6 +799,7 @@ EXPORT_SYMBOL(drm_mm_scan_init_with_range); /** * drm_mm_scan_add_block - add a node to the scan list + * @scan: the active drm_mm scanner * @node: drm_mm_node to add * * Add a node to the scan list that might be freed to make space for the desired @@ -856,6 +857,7 @@ EXPORT_SYMBOL(drm_mm_scan_add_block); /** * drm_mm_scan_remove_block - remove a node from the scan list + * @scan: the active drm_mm scanner * @node: drm_mm_node to remove * * Nodes _must_ be removed in exactly the reverse order from the scan list as
A couple of parameters slipped through the kerneldoc net. Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> --- drivers/gpu/drm/drm_mm.c | 2 ++ 1 file changed, 2 insertions(+)