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(+)
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