ACPI: thermal: Replace ternary operator with min_t()
authorJiangshan Yi <yijiangshan@kylinos.cn>
Tue, 28 Mar 2023 03:16:29 +0000 (11:16 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 30 Mar 2023 17:09:49 +0000 (19:09 +0200)
commit0dc9a715578b041b6159714f23f94cf71a214411
treef3ec40c1c576ccf270e6764223e81cfde1a25844
parent197b6b60ae7bc51dd0814953c562833143b292aa
ACPI: thermal: Replace ternary operator with min_t()

Modify the code in accordance with the coccicheck warning:

drivers/acpi/thermal.c:422: WARNING opportunity for min().

min_t() macro is defined in include/linux/minmax.h. It avoids multiple
evaluations of the arguments when non-constant and performs strict
type-checking.

Signed-off-by: Jiangshan Yi <yijiangshan@kylinos.cn>
[ rjw: Changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/thermal.c