From: Amit Kucheria Date: Wed, 20 Nov 2019 15:45:10 +0000 (+0530) Subject: thermal: of-thermal: Appease the kernel-doc deity X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=faae0ed7a5a2d212143d615ec27f9e46aade01a9;p=openwrt%2Fstaging%2Fblogic.git thermal: of-thermal: Appease the kernel-doc deity Replace a comment starting with /** by simply /* to avoid having it interpreted as a kernel-doc comment. Fixes the following warning when compile with make W=1: linux.git/drivers/thermal/of-thermal.c:761: warning: cannot understand function prototype: 'const char *trip_types[] = ' Signed-off-by: Amit Kucheria Reviewed-by: Viresh Kumar Signed-off-by: Daniel Lezcano Link: https://lore.kernel.org/r/dc742789bf4b3c8207b01c7946f2b401350536a7.1574242756.git.amit.kucheria@linaro.org --- diff --git a/drivers/thermal/of-thermal.c b/drivers/thermal/of-thermal.c index dc5093be553e..5235aed2fadd 100644 --- a/drivers/thermal/of-thermal.c +++ b/drivers/thermal/of-thermal.c @@ -754,7 +754,7 @@ end: return ret; } -/** +/* * It maps 'enum thermal_trip_type' found in include/linux/thermal.h * into the device tree binding of 'trip', property type. */