diff options
author | Axel Lin <axel.lin@ingics.com> | 2016-04-13 08:54:30 +0800 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2023-10-29 20:30:07 +0100 |
commit | 5ac61d26b8baff5b2e5a9f3dc1ef63297e4b53e7 (patch) | |
tree | 1aca0b1b472c85598d08572784b66c8329dcfdc5 /drivers/i2c | |
parent | d9387eda56a49b2cf4487b3c4f12500190e6bb88 (diff) |
i2c: sun6i-p2wi: Prevent potential division by zero
Make sure we don't OOPS in case clock-frequency is set to 0 in a DT. The
variable set here is later used as a divisor.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-sun6i-p2wi.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-sun6i-p2wi.c b/drivers/i2c/busses/i2c-sun6i-p2wi.c index fa6020dced59..85e035e7a1d7 100644 --- a/drivers/i2c/busses/i2c-sun6i-p2wi.c +++ b/drivers/i2c/busses/i2c-sun6i-p2wi.c @@ -201,6 +201,11 @@ static int p2wi_probe(struct platform_device *pdev) return -EINVAL; } + if (clk_freq == 0) { + dev_err(dev, "clock-frequency is set to 0 in DT\n"); + return -EINVAL; + } + if (of_get_child_count(np) > 1) { dev_err(dev, "P2WI only supports one slave device\n"); return -EINVAL; |