diff options
author | Aleksa Savic <savicaleksa83@gmail.com> | 2024-11-24 16:27:24 +0100 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2024-11-24 16:36:47 +0100 |
commit | 998b5a78a9ce1cc4378e7281e4ea310e37596170 (patch) | |
tree | 46f9776d6b6b507b0f22df84d252042e195ac959 /drivers/hwmon/aquacomputer_d5next.c | |
parent | hwmon: (tps23861) Fix reporting of negative temperatures (diff) | |
download | linux-998b5a78a9ce1cc4378e7281e4ea310e37596170.tar.xz linux-998b5a78a9ce1cc4378e7281e4ea310e37596170.zip |
hwmon: (aquacomputer_d5next) Fix length of speed_input array
Commit 120584c728a6 ("hwmon: (aquacomputer_d5next) Add support for Octo
flow sensor") added support for reading Octo flow sensor, but didn't
update the priv->speed_input array length. Since Octo has 8 fans, with
the addition of the flow sensor the proper length for speed_input is 9.
Reported by Arne Schwabe on Github [1], who received a UBSAN warning.
Fixes: 120584c728a6 ("hwmon: (aquacomputer_d5next) Add support for Octo flow sensor")
Closes: https://github.com/aleksamagicka/aquacomputer_d5next-hwmon/issues/100 [1]
Reported-by: Arne Schwabe <arne@rfc2549.org>
Signed-off-by: Aleksa Savic <savicaleksa83@gmail.com>
Message-ID: <20241124152725.7205-1-savicaleksa83@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to '')
-rw-r--r-- | drivers/hwmon/aquacomputer_d5next.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/aquacomputer_d5next.c b/drivers/hwmon/aquacomputer_d5next.c index 34cac27e4dde..0dcb8a3a691d 100644 --- a/drivers/hwmon/aquacomputer_d5next.c +++ b/drivers/hwmon/aquacomputer_d5next.c @@ -597,7 +597,7 @@ struct aqc_data { /* Sensor values */ s32 temp_input[20]; /* Max 4 physical and 16 virtual or 8 physical and 12 virtual */ - s32 speed_input[8]; + s32 speed_input[9]; u32 speed_input_min[1]; u32 speed_input_target[1]; u32 speed_input_max[1]; |