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

Commit e8e71291 authored by Gao Pan's avatar Gao Pan Committed by Wolfram Sang
Browse files

i2c: imx: improve code readability



Replace of_get_named_gpio_flags with of_get_named_gpio because
the latter has less parameters, which improves code readability.

Signed-off-by: default avatarFugang Duan <B38611@freescale.com>
Signed-off-by: default avatarGao Pan <b54642@freescale.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 5b661539
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1004,10 +1004,8 @@ static void i2c_imx_init_recovery_info(struct imx_i2c_struct *i2c_imx,
			PINCTRL_STATE_DEFAULT);
	i2c_imx->pinctrl_pins_gpio = pinctrl_lookup_state(i2c_imx->pinctrl,
			"gpio");
	rinfo->sda_gpio = of_get_named_gpio_flags(pdev->dev.of_node,
			"sda-gpios", 0, NULL);
	rinfo->scl_gpio = of_get_named_gpio_flags(pdev->dev.of_node,
			"scl-gpios", 0, NULL);
	rinfo->sda_gpio = of_get_named_gpio(pdev->dev.of_node, "sda-gpios", 0);
	rinfo->scl_gpio = of_get_named_gpio(pdev->dev.of_node, "scl-gpios", 0);

	if (!gpio_is_valid(rinfo->sda_gpio) ||
	    !gpio_is_valid(rinfo->scl_gpio) ||