blob: 9287cd2df2adc3e221b36c21a114815608b91e93 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001From c35124bc3fc5f9f2a79815721db139e5bf186391 Mon Sep 17 00:00:00 2001
2From: Dong Aisheng <aisheng.dong@nxp.com>
3Date: Thu, 26 Sep 2019 21:00:55 +0800
4Subject: [PATCH] i2c: imx: get rid of CONFIG_ARCH_LAYERSCAPE
5
6We can't use CONFIG_ARCH_LAYERSCAPE for one Image multiple platforms
7support.
8
9Reviewed-by: Biwen Li <biwen.li@nxp.com>
10Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
11---
12 drivers/i2c/busses/i2c-imx.c | 13 ++++++-------
13 1 file changed, 6 insertions(+), 7 deletions(-)
14
15--- a/drivers/i2c/busses/i2c-imx.c
16+++ b/drivers/i2c/busses/i2c-imx.c
17@@ -1426,13 +1426,12 @@ static int i2c_imx_probe(struct platform
18 i2c_imx, IMX_I2C_I2CR);
19 imx_i2c_write_reg(i2c_imx->hwdata->i2sr_clr_opcode, i2c_imx, IMX_I2C_I2SR);
20
21-#ifdef CONFIG_ARCH_LAYERSCAPE
22- /* Init optional bus recovery for layerscape */
23- ret = i2c_imx_init_recovery_for_layerscape(i2c_imx, pdev);
24-#else
25- /* Init optional bus recovery function */
26- ret = i2c_imx_init_recovery_info(i2c_imx, pdev);
27-#endif
28+ /* Init optional bus recovery */
29+ if (of_match_node(pinmux_of_match, pdev->dev.of_node))
30+ ret = i2c_imx_init_recovery_for_layerscape(i2c_imx, pdev);
31+ else
32+ ret = i2c_imx_init_recovery_info(i2c_imx, pdev);
33+
34 /* Give it another chance if pinctrl used is not ready yet */
35 if (ret == -EPROBE_DEFER)
36 goto clk_notifier_unregister;