mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-23 12:14:10 +08:00
iio: dac: ltc2664: Fix off by one in ltc2664_channel_config()
This comparison should be >= ARRAY_SIZE() instead of >. The "mspan"
variable is later used as an array index into ltc2664_mspan_lut[] so
this is an off by one bug.
Fixes: 4cc2fc445d
("iio: dac: ltc2664: Add driver for LTC2664 and LTC2672")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://patch.msgid.link/5727ab54-6280-466e-b107-1b6006e5ab29@stanley.mountain
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
b09999ee1e
commit
4f6ca3464d
@ -526,7 +526,7 @@ static int ltc2664_channel_config(struct ltc2664_state *st)
|
||||
return dev_err_probe(dev, -EINVAL,
|
||||
"adi,manual-span-operation-config not supported\n");
|
||||
|
||||
if (mspan > ARRAY_SIZE(ltc2664_mspan_lut))
|
||||
if (mspan >= ARRAY_SIZE(ltc2664_mspan_lut))
|
||||
return dev_err_probe(dev, -EINVAL,
|
||||
"adi,manual-span-operation-config not in range\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user