Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1473462 > unrolled thread

[PATCH 2/5] i2c: tegra: If fifo flush fails return error

Started byShardar Shariff Md <smohammed@nvidia.com>
First post2016-08-31 15:30 +0200
Last post2016-08-31 15:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 2/5] i2c: tegra: If fifo flush fails return error Shardar Shariff Md <smohammed@nvidia.com> - 2016-08-31 15:30 +0200

#1473462 — [PATCH 2/5] i2c: tegra: If fifo flush fails return error

FromShardar Shariff Md <smohammed@nvidia.com>
Date2016-08-31 15:30 +0200
Subject[PATCH 2/5] i2c: tegra: If fifo flush fails return error
Message-ID<scdKy-2UO-7@gated-at.bofh.it>
During i2c controller initialization, when fifo flush fails return error
instead of returning the error during exit.

Signed-off-by: Shardar Shariff Md <smohammed@nvidia.com>

---
Changes in v11:
- Fix smatch error for below warning
  tegra_i2c_init warn: unused return: err = tegra_i2c_flush_fifos()
---
---
 drivers/i2c/busses/i2c-tegra.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/i2c/busses/i2c-tegra.c b/drivers/i2c/busses/i2c-tegra.c
index e93c72a..07a39b7 100644
--- a/drivers/i2c/busses/i2c-tegra.c
+++ b/drivers/i2c/busses/i2c-tegra.c
@@ -494,6 +494,8 @@ static int tegra_i2c_init(struct tegra_i2c_dev *i2c_dev)
 	i2c_writel(i2c_dev, val, I2C_FIFO_CONTROL);
 
 	err = tegra_i2c_flush_fifos(i2c_dev);
+	if (err)
+		goto err;
 
 	if (i2c_dev->is_multimaster_mode && i2c_dev->hw->has_slcg_override_reg)
 		i2c_writel(i2c_dev, I2C_MST_CORE_CLKEN_OVR, I2C_CLKEN_OVERRIDE);
-- 
1.8.1.5

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web