aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/dd.c
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2014-08-08 15:56:36 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-23 23:10:11 -0700
commit41575335ed026339e07f265ede3a21e995bee8e6 (patch)
tree545693d095c022417ac6333ead3d9500449574bd /drivers/base/dd.c
parentattribute_container: fix coding style issues (diff)
downloadlinux-dev-41575335ed026339e07f265ede3a21e995bee8e6.tar.xz
linux-dev-41575335ed026339e07f265ede3a21e995bee8e6.zip
driver core: Remove kerneldoc from local function
The deferred_probe_work_func() function is locally scoped, therefore an associated kerneldoc comment isn't very useful. Replace the kerneldoc opening marker (/**) with a regular block comment marker (/*) to avoid the comment from being parsed by kerneldoc. This gets rid of a warning caused by a missing description for the "work" argument. Signed-off-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/base/dd.c')
-rw-r--r--drivers/base/dd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/dd.c b/drivers/base/dd.c
index e4ffbcf2f519..cdc779cf79a3 100644
--- a/drivers/base/dd.c
+++ b/drivers/base/dd.c
@@ -54,7 +54,7 @@ static LIST_HEAD(deferred_probe_active_list);
static struct workqueue_struct *deferred_wq;
static atomic_t deferred_trigger_count = ATOMIC_INIT(0);
-/**
+/*
* deferred_probe_work_func() - Retry probing devices in the active list.
*/
static void deferred_probe_work_func(struct work_struct *work)