From: Axel Lin <axel.lin@ingics.com>
To: Wolfram Sang <wsa@the-dreams.de>
Cc: "Uwe Kleine-König" <kernel@pengutronix.de>, linux-i2c@vger.kernel.org
Subject: [PATCH v2] i2c: efm32: Prevent potential division by zero
Date: Thu, 14 Apr 2016 17:49:35 +0800 [thread overview]
Message-ID: <1460627375.17638.1.camel@ingics.com> (raw)
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>
---
Hi Uwe,
If my understand is correct, you prefer to make it return error rather
than using default frequency setting if DT setting is wrong.
v2: Make probe return error instead of using default frequency.
drivers/i2c/busses/i2c-efm32.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/i2c/busses/i2c-efm32.c b/drivers/i2c/busses/i2c-efm32.c
index 8eff627..7c0636e 100644
--- a/drivers/i2c/busses/i2c-efm32.c
+++ b/drivers/i2c/busses/i2c-efm32.c
@@ -395,6 +395,13 @@ static int efm32_i2c_probe(struct platform_device *pdev)
frequency = 100000;
dev_info(&pdev->dev, "defaulting to 100 kHz\n");
}
+
+ if (frequency == 0) {
+ dev_err(&pdev->dev, "Invalid clock-frequency\n");
+ ret = -EINVAL;
+ goto err_disable_clk;
+ }
+
ddata->frequency = frequency;
rate = clk_get_rate(ddata->clk);
--
2.5.0
next reply other threads:[~2016-04-14 9:49 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-14 9:49 Axel Lin [this message]
2016-04-14 11:40 ` [PATCH v2] i2c: efm32: Prevent potential division by zero Uwe Kleine-König
2016-04-14 14:17 ` Axel Lin
2016-04-14 18:52 ` Uwe Kleine-König
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1460627375.17638.1.camel@ingics.com \
--to=axel.lin@ingics.com \
--cc=kernel@pengutronix.de \
--cc=linux-i2c@vger.kernel.org \
--cc=wsa@the-dreams.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).