aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/imx6/patches-4.3/207-i2c-imx-add-retries-for-NAK-s-on-ventana-boards.patch
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2016-01-18 06:43:48 +0000
committerLuka Perkov <luka@openwrt.org>2016-01-18 06:43:48 +0000
commitc4de2dfd2d79021626acdbaefc6cc9c17eac35bf (patch)
tree7c66af2dac9f181d8e9c431ab9f73066de075f24 /target/linux/imx6/patches-4.3/207-i2c-imx-add-retries-for-NAK-s-on-ventana-boards.patch
parent85bdde7cf2821655c74fb4381926335a1161f0c1 (diff)
downloadupstream-c4de2dfd2d79021626acdbaefc6cc9c17eac35bf.tar.gz
upstream-c4de2dfd2d79021626acdbaefc6cc9c17eac35bf.tar.bz2
upstream-c4de2dfd2d79021626acdbaefc6cc9c17eac35bf.zip
imx6: drop 4.3 support
Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 48299
Diffstat (limited to 'target/linux/imx6/patches-4.3/207-i2c-imx-add-retries-for-NAK-s-on-ventana-boards.patch')
-rw-r--r--target/linux/imx6/patches-4.3/207-i2c-imx-add-retries-for-NAK-s-on-ventana-boards.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/target/linux/imx6/patches-4.3/207-i2c-imx-add-retries-for-NAK-s-on-ventana-boards.patch b/target/linux/imx6/patches-4.3/207-i2c-imx-add-retries-for-NAK-s-on-ventana-boards.patch
deleted file mode 100644
index fa3bf138f6..0000000000
--- a/target/linux/imx6/patches-4.3/207-i2c-imx-add-retries-for-NAK-s-on-ventana-boards.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/drivers/i2c/busses/i2c-imx.c
-+++ b/drivers/i2c/busses/i2c-imx.c
-@@ -461,6 +461,8 @@ static int i2c_imx_acked(struct imx_i2c_
- {
- if (imx_i2c_read_reg(i2c_imx, IMX_I2C_I2SR) & I2SR_RXAK) {
- dev_dbg(&i2c_imx->adapter.dev, "<%s> No ACK\n", __func__);
-+ if (i2c_imx->adapter.retries)
-+ return -EAGAIN;
- return -EIO; /* No ACK */
- }
-
-@@ -1010,6 +1012,10 @@ static int i2c_imx_probe(struct platform
- i2c_imx->adapter.nr = pdev->id;
- i2c_imx->adapter.dev.of_node = pdev->dev.of_node;
- i2c_imx->base = base;
-+ if (of_machine_is_compatible("gw,ventana") && phy_addr == 0x021a0000) {
-+ dev_info(&pdev->dev, "Adding retries for Ventana GSC\n");
-+ i2c_imx->adapter.retries = 3;
-+ }
-
- /* Get I2C clock */
- i2c_imx->clk = devm_clk_get(&pdev->dev, NULL);