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

thermal: step_wise: Appease the kernel-doc deity

Replace - with : to appease the kernel-doc gods and fix warnings such as
the following when compiled with make W=1:

linux-amit.git/drivers/thermal/step_wise.c:187: warning: Function
parameter or member 'tz' not described in 'step_wise_throttle'
linux-amit.git/drivers/thermal/step_wise.c:187: warning: Function
parameter or member 'trip' not described in 'step_wise_throttle'

linux.git/drivers/thermal/fair_share.c:79: warning: Function parameter
or member 'tz' not described in 'fair_share_throttle'
linux.git/drivers/thermal/fair_share.c:79: warning: Function parameter
or member 'trip' not described in 'fair_share_throttle'

Signed-off-by: Amit Kucheria <amit.kucheria@linaro.org>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/5d48ac6f85667a53902092ad5bbfef8cc89a7162.1574242756.git.amit.kucheria@linaro.org

authored by

Amit Kucheria and committed by
Daniel Lezcano
53d256e7 7b4e7f07

+8 -8
+2 -2
drivers/thermal/fair_share.c
··· 58 58 59 59 /** 60 60 * fair_share_throttle - throttles devices associated with the given zone 61 - * @tz - thermal_zone_device 62 - * @trip - trip point index 61 + * @tz: thermal_zone_device 62 + * @trip: trip point index 63 63 * 64 64 * Throttling Logic: This uses three parameters to calculate the new 65 65 * throttle state of the cooling devices associated with the given zone.
+2 -2
drivers/thermal/gov_bang_bang.c
··· 71 71 72 72 /** 73 73 * bang_bang_control - controls devices associated with the given zone 74 - * @tz - thermal_zone_device 75 - * @trip - the trip point 74 + * @tz: thermal_zone_device 75 + * @trip: the trip point 76 76 * 77 77 * Regulation Logic: a two point regulation, deliver cooling state depending 78 78 * on the previous state shown in this diagram:
+2 -2
drivers/thermal/step_wise.c
··· 174 174 175 175 /** 176 176 * step_wise_throttle - throttles devices associated with the given zone 177 - * @tz - thermal_zone_device 178 - * @trip - trip point index 177 + * @tz: thermal_zone_device 178 + * @trip: trip point index 179 179 * 180 180 * Throttling Logic: This uses the trend of the thermal zone to throttle. 181 181 * If the thermal zone is 'heating up' this throttles all the cooling
+2 -2
drivers/thermal/user_space.c
··· 17 17 18 18 /** 19 19 * notify_user_space - Notifies user space about thermal events 20 - * @tz - thermal_zone_device 21 - * @trip - trip point index 20 + * @tz: thermal_zone_device 21 + * @trip: trip point index 22 22 * 23 23 * This function notifies the user space through UEvents. 24 24 */