diff options
Diffstat (limited to 'drivers/platform/x86/intel/int3472/led.c')
| -rw-r--r-- | drivers/platform/x86/intel/int3472/led.c | 24 | 
1 files changed, 4 insertions, 20 deletions
| diff --git a/drivers/platform/x86/intel/int3472/led.c b/drivers/platform/x86/intel/int3472/led.c index bca1ce7d0d0c..9cbed694e2ca 100644 --- a/drivers/platform/x86/intel/int3472/led.c +++ b/drivers/platform/x86/intel/int3472/led.c @@ -16,26 +16,15 @@ static int int3472_pled_set(struct led_classdev *led_cdev,  	return 0;  } -int skl_int3472_register_pled(struct int3472_discrete_device *int3472, -			      struct acpi_resource_gpio *agpio, u32 polarity) +int skl_int3472_register_pled(struct int3472_discrete_device *int3472, struct gpio_desc *gpio)  { -	char *p, *path = agpio->resource_source.string_ptr; +	char *p;  	int ret;  	if (int3472->pled.classdev.dev)  		return -EBUSY; -	int3472->pled.gpio = acpi_get_and_request_gpiod(path, agpio->pin_table[0], -							     "int3472,privacy-led"); -	if (IS_ERR(int3472->pled.gpio)) -		return dev_err_probe(int3472->dev, PTR_ERR(int3472->pled.gpio), -				     "getting privacy LED GPIO\n"); - -	if (polarity == GPIO_ACTIVE_LOW) -		gpiod_toggle_active_low(int3472->pled.gpio); - -	/* Ensure the pin is in output mode and non-active state */ -	gpiod_direction_output(int3472->pled.gpio, 0); +	int3472->pled.gpio = gpio;  	/* Generate the name, replacing the ':' in the ACPI devname with '_' */  	snprintf(int3472->pled.name, sizeof(int3472->pled.name), @@ -50,7 +39,7 @@ int skl_int3472_register_pled(struct int3472_discrete_device *int3472,  	ret = led_classdev_register(int3472->dev, &int3472->pled.classdev);  	if (ret) -		goto err_free_gpio; +		return ret;  	int3472->pled.lookup.provider = int3472->pled.name;  	int3472->pled.lookup.dev_id = int3472->sensor_name; @@ -58,10 +47,6 @@ int skl_int3472_register_pled(struct int3472_discrete_device *int3472,  	led_add_lookup(&int3472->pled.lookup);  	return 0; - -err_free_gpio: -	gpiod_put(int3472->pled.gpio); -	return ret;  }  void skl_int3472_unregister_pled(struct int3472_discrete_device *int3472) @@ -71,5 +56,4 @@ void skl_int3472_unregister_pled(struct int3472_discrete_device *int3472)  	led_remove_lookup(&int3472->pled.lookup);  	led_classdev_unregister(&int3472->pled.classdev); -	gpiod_put(int3472->pled.gpio);  } |