mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
mfd: Use gpio_request_one from aat2870-core
Use gpio_request_one() instead of multiple gpiolib calls. Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Jin Park <jinyoungp@nvidia.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
61485c63c4
commit
aced760d91
@ -407,13 +407,13 @@ static int aat2870_i2c_probe(struct i2c_client *client,
|
||||
aat2870->init(aat2870);
|
||||
|
||||
if (aat2870->en_pin >= 0) {
|
||||
ret = gpio_request(aat2870->en_pin, "aat2870-en");
|
||||
ret = gpio_request_one(aat2870->en_pin, GPIOF_OUT_INIT_HIGH,
|
||||
"aat2870-en");
|
||||
if (ret < 0) {
|
||||
dev_err(&client->dev,
|
||||
"Failed to request GPIO %d\n", aat2870->en_pin);
|
||||
goto out_kfree;
|
||||
}
|
||||
gpio_direction_output(aat2870->en_pin, 1);
|
||||
}
|
||||
|
||||
aat2870_enable(aat2870);
|
||||
|
Loading…
Reference in New Issue
Block a user