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

Commit b04edb93 authored by Axel Lin's avatar Axel Lin Committed by Samuel Ortiz
Browse files

mfd: Use gpio_request_one from twl6040-core



Use gpio_request_one() instead of multiple gpiolib calls.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 4e9daaca
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -509,13 +509,10 @@ static int __devinit twl6040_probe(struct platform_device *pdev)
		twl6040->audpwron = -EINVAL;

	if (gpio_is_valid(twl6040->audpwron)) {
		ret = gpio_request(twl6040->audpwron, "audpwron");
		ret = gpio_request_one(twl6040->audpwron, GPIOF_OUT_INIT_LOW,
				       "audpwron");
		if (ret)
			goto gpio1_err;

		ret = gpio_direction_output(twl6040->audpwron, 0);
		if (ret)
			goto gpio2_err;
	}

	/* codec interrupt */