From: Shen Lichuan Date: Tue, 27 Aug 2024 07:04:42 +0000 (+0800) Subject: hwmon: (pc87360) Use min() macro X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ac9cca7a6a17c6d8bd849be669005fac0420d4b5;p=users%2Fjedix%2Flinux-maple.git hwmon: (pc87360) Use min() macro Use the min() macro to simplify the pc87360_init_device() function and improve its readability. Signed-off-by: Shen Lichuan Message-ID: <20240827070442.40667-1-shenlichuan@vivo.com> Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/pc87360.c b/drivers/hwmon/pc87360.c index 9e9681b2e8c55..788b5d58f77ea 100644 --- a/drivers/hwmon/pc87360.c +++ b/drivers/hwmon/pc87360.c @@ -1315,7 +1315,7 @@ static void pc87360_init_device(struct platform_device *pdev, (reg & 0xC0) | 0x11); } - nr = data->innr < 11 ? data->innr : 11; + nr = min(data->innr, 11); for (i = 0; i < nr; i++) { reg = pc87360_read_value(data, LD_IN, i, PC87365_REG_IN_STATUS);