Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eba523b4 authored by Clemens Gruber's avatar Clemens Gruber Committed by Wolfram Sang
Browse files

i2c: imx: fix misleading bus recovery debug message



The arguments for SDA and SCL were swapped. Fix it.

Signed-off-by: default avatarClemens Gruber <clemens.gruber@pqgruber.com>
Acked-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent df0a2fda
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1021,7 +1021,7 @@ static int i2c_imx_init_recovery_info(struct imx_i2c_struct *i2c_imx,
	}

	dev_dbg(&pdev->dev, "using scl-gpio %d and sda-gpio %d for recovery\n",
			rinfo->sda_gpio, rinfo->scl_gpio);
			rinfo->scl_gpio, rinfo->sda_gpio);

	rinfo->prepare_recovery = i2c_imx_prepare_recovery;
	rinfo->unprepare_recovery = i2c_imx_unprepare_recovery;