mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-03 21:01:50 +00:00
i2c-nomadik: Do not use _interruptible_ variant call
If there is a signal pending and wait_for_completion_interruptible_timeout exited because of the -ERESTARTSYS error we are unable to send any more i2c messages. So, deprecate this _interruptible_ variant call. Signed-off-by: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
This commit is contained in:
parent
fcb8ce5cfe
commit
4b723a4710
1 changed files with 4 additions and 4 deletions
|
@ -417,12 +417,12 @@ static int read_i2c(struct nmk_i2c_dev *dev)
|
||||||
writel(readl(dev->virtbase + I2C_IMSCR) | irq_mask,
|
writel(readl(dev->virtbase + I2C_IMSCR) | irq_mask,
|
||||||
dev->virtbase + I2C_IMSCR);
|
dev->virtbase + I2C_IMSCR);
|
||||||
|
|
||||||
timeout = wait_for_completion_interruptible_timeout(
|
timeout = wait_for_completion_timeout(
|
||||||
&dev->xfer_complete, dev->adap.timeout);
|
&dev->xfer_complete, dev->adap.timeout);
|
||||||
|
|
||||||
if (timeout < 0) {
|
if (timeout < 0) {
|
||||||
dev_err(&dev->pdev->dev,
|
dev_err(&dev->pdev->dev,
|
||||||
"wait_for_completion_interruptible_timeout"
|
"wait_for_completion_timeout"
|
||||||
"returned %d waiting for event\n", timeout);
|
"returned %d waiting for event\n", timeout);
|
||||||
status = timeout;
|
status = timeout;
|
||||||
}
|
}
|
||||||
|
@ -504,12 +504,12 @@ static int write_i2c(struct nmk_i2c_dev *dev)
|
||||||
writel(readl(dev->virtbase + I2C_IMSCR) | irq_mask,
|
writel(readl(dev->virtbase + I2C_IMSCR) | irq_mask,
|
||||||
dev->virtbase + I2C_IMSCR);
|
dev->virtbase + I2C_IMSCR);
|
||||||
|
|
||||||
timeout = wait_for_completion_interruptible_timeout(
|
timeout = wait_for_completion_timeout(
|
||||||
&dev->xfer_complete, dev->adap.timeout);
|
&dev->xfer_complete, dev->adap.timeout);
|
||||||
|
|
||||||
if (timeout < 0) {
|
if (timeout < 0) {
|
||||||
dev_err(&dev->pdev->dev,
|
dev_err(&dev->pdev->dev,
|
||||||
"wait_for_completion_interruptible_timeout"
|
"wait_for_completion_timeout"
|
||||||
"returned %d waiting for event\n", timeout);
|
"returned %d waiting for event\n", timeout);
|
||||||
status = timeout;
|
status = timeout;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue