diff options
author | Green Wan <green.wan@sifive.com> | 2019-11-18 22:35:52 +0800 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2019-11-22 11:15:28 +0530 |
commit | dd9c324a5e96bfdc4c5c965da6fbd680340cd3f2 (patch) | |
tree | 35747f3f7e6fe56adb31b17dc1d49509072ae12a | |
parent | 340049d453682a9fe8d91fe794dd091730f4bb25 (diff) |
dmaengine: sf-pdma: replace /** with /* for non-function comment
There are several comments starting from "/**" but not for function
comment purpose. It causes kernel-doc parsing wrong string. Replace
"/**" with "/*" to fix them.
Signed-off-by: Green Wan <green.wan@sifive.com>
Link: https://lore.kernel.org/r/20191118143554.16129-1-green.wan@sifive.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
-rw-r--r-- | drivers/dma/sf-pdma/sf-pdma.c | 2 | ||||
-rw-r--r-- | drivers/dma/sf-pdma/sf-pdma.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/sf-pdma/sf-pdma.c b/drivers/dma/sf-pdma/sf-pdma.c index 16fe00553496..e8b9770dcfba 100644 --- a/drivers/dma/sf-pdma/sf-pdma.c +++ b/drivers/dma/sf-pdma/sf-pdma.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-or-later -/** +/* * SiFive FU540 Platform DMA driver * Copyright (C) 2019 SiFive * diff --git a/drivers/dma/sf-pdma/sf-pdma.h b/drivers/dma/sf-pdma/sf-pdma.h index 55816c9e0249..aab65a0bdfcc 100644 --- a/drivers/dma/sf-pdma/sf-pdma.h +++ b/drivers/dma/sf-pdma/sf-pdma.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */ -/** +/* * SiFive FU540 Platform DMA driver * Copyright (C) 2019 SiFive * |