From: Chris Wilson Date: Wed, 28 Dec 2016 10:51:20 +0000 (+0000) Subject: drm: Add kerneldoc markup for new @scan parameters in drm_mm X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9b8b75de4cb379187c481a5332a12429f31c0887;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git drm: Add kerneldoc markup for new @scan parameters in drm_mm A couple of parameters slipped through the kerneldoc net. Reported-by: kbuild test robot Signed-off-by: Chris Wilson Cc: Daniel Vetter Signed-off-by: Daniel Vetter Link: http://patchwork.freedesktop.org/patch/msgid/20161228105120.14500-1-chris@chris-wilson.co.uk --- diff --git a/drivers/gpu/drm/drm_mm.c b/drivers/gpu/drm/drm_mm.c index 713f4336107f..1a5b4eba2386 100644 --- a/drivers/gpu/drm/drm_mm.c +++ b/drivers/gpu/drm/drm_mm.c @@ -619,6 +619,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 @@ -701,6 +702,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