mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-03 00:38:16 +07:00
misc/at24: add more sanity checks for parameters
Side-effects happen when passing 0 to either io_limit or page_size. Give an error in case of this misconfiguration. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
parent
9ed030d728
commit
45efe84797
@ -517,6 +517,11 @@ static int at24_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
|||||||
if (!is_power_of_2(chip.byte_len))
|
if (!is_power_of_2(chip.byte_len))
|
||||||
dev_warn(&client->dev,
|
dev_warn(&client->dev,
|
||||||
"byte_len looks suspicious (no power of 2)!\n");
|
"byte_len looks suspicious (no power of 2)!\n");
|
||||||
|
if (!chip.page_size) {
|
||||||
|
dev_err(&client->dev, "page_size must not be 0!\n");
|
||||||
|
err = -EINVAL;
|
||||||
|
goto err_out;
|
||||||
|
}
|
||||||
if (!is_power_of_2(chip.page_size))
|
if (!is_power_of_2(chip.page_size))
|
||||||
dev_warn(&client->dev,
|
dev_warn(&client->dev,
|
||||||
"page_size looks suspicious (no power of 2)!\n");
|
"page_size looks suspicious (no power of 2)!\n");
|
||||||
@ -681,6 +686,11 @@ static struct i2c_driver at24_driver = {
|
|||||||
|
|
||||||
static int __init at24_init(void)
|
static int __init at24_init(void)
|
||||||
{
|
{
|
||||||
|
if (!io_limit) {
|
||||||
|
pr_err("at24: io_limit must not be 0!\n");
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
io_limit = rounddown_pow_of_two(io_limit);
|
io_limit = rounddown_pow_of_two(io_limit);
|
||||||
return i2c_add_driver(&at24_driver);
|
return i2c_add_driver(&at24_driver);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user