Skip to content

Commit

Permalink
HSI: cmt_speech: unmark comments as kernel-doc
Browse files Browse the repository at this point in the history
Fix build warnings from the kernel test robot:

drivers/hsi/clients/cmt_speech.c:831: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
    * Block until pending data transfers have completed.

Signed-off-by: Randy Dunlap <[email protected]>
Reported-by: kernel test robot <[email protected]>
Cc: Aditya Srivastava <[email protected]>
Acked-by: Pavel Machek <[email protected]>
Signed-off-by: Sebastian Reichel <[email protected]>
  • Loading branch information
rddunlap authored and sre committed Oct 2, 2021
1 parent 6880fa6 commit 4ef69e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/hsi/clients/cmt_speech.c
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ static int check_buf_params(struct cs_hsi_iface *hi,
return r;
}

/**
/*
* Block until pending data transfers have completed.
*/
static int cs_hsi_data_sync(struct cs_hsi_iface *hi)
Expand All @@ -850,7 +850,7 @@ static int cs_hsi_data_sync(struct cs_hsi_iface *hi)
r = -ERESTARTSYS;
goto out;
}
/**
/*
* prepare_to_wait must be called with hi->lock held
* so that callbacks can check for waitqueue_active()
*/
Expand Down

0 comments on commit 4ef69e1

Please sign in to comment.