Message ID | 20200424161147.16895-6-andriy.shevchenko@linux.intel.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [v1,1/6] dmaengine: dmatest: Fix iteration non-stop logic | expand |
On 24-04-20, 19:11, Andy Shevchenko wrote: > Kernel documentation validator complains that not all members of > struct dmatest_info are being described. Describe them all. Applied, thanks
diff --git a/drivers/dma/dmatest.c b/drivers/dma/dmatest.c index 946b03859cdec..31ba5d7b6ae8c 100644 --- a/drivers/dma/dmatest.c +++ b/drivers/dma/dmatest.c @@ -125,7 +125,10 @@ struct dmatest_params { /** * struct dmatest_info - test information. * @params: test parameters + * @channels: channels under test + * @nr_channels: number of channels under test * @lock: access protection to the fields of this structure + * @did_init: module has been initialized completely */ static struct dmatest_info { /* Test parameters */
Kernel documentation validator complains that not all members of struct dmatest_info are being described. Describe them all. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> --- drivers/dma/dmatest.c | 3 +++ 1 file changed, 3 insertions(+)