Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

rtc: ac100: remove misuses of kernel-doc

Prevent kernel-doc warnings by changing "/**" to common comment
format "/*" in non-kernel-doc comments:

drivers/rtc/rtc-ac100.c:103: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
* Clock controls for 3 clock output pins
drivers/rtc/rtc-ac100.c:382: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
* RTC related bits

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Chen-Yu Tsai <wens@csie.org>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
Cc: <linux-rtc@vger.kernel.org>
Link: https://lore.kernel.org/r/20240114231320.31437-1-rdunlap@infradead.org
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

authored by

Randy Dunlap and committed by
Alexandre Belloni
eea7615b e3d3fe7e

+2 -2
+2 -2
drivers/rtc/rtc-ac100.c
··· 99 99 struct clk_hw_onecell_data *clk_data; 100 100 }; 101 101 102 - /** 102 + /* 103 103 * Clock controls for 3 clock output pins 104 104 */ 105 105 ··· 378 378 clk_unregister_fixed_rate(chip->rtc_32k_clk->clk); 379 379 } 380 380 381 - /** 381 + /* 382 382 * RTC related bits 383 383 */ 384 384 static int ac100_rtc_get_time(struct device *dev, struct rtc_time *rtc_tm)