media: ov5693: Drop privacy-LED GPIO control
authorHans de Goede <hdegoede@redhat.com>
Sat, 1 Jun 2024 17:39:37 +0000 (19:39 +0200)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Tue, 4 Jun 2024 06:31:26 +0000 (08:31 +0200)
Drop privacy-LED GPIO control, after the privacy-LED GPIO control was added
to the ov5693 driver it was decided to model privacy-LEDs as LED class
devices and have them be controlled by the v4l2-core.

So this is dead code since on devices with privacy LEDs the led is not
a GPIO on the ov5693 fwnode, but rather is a LED class devices controlled
by the v4l2-core.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/i2c/ov5693.c

index 8deb28b55983e976ea36c4efd1778353088b01e6..46b9ce1116763297d63c6d919c6f3dc2ce768ff1 100644 (file)
@@ -141,7 +141,6 @@ struct ov5693_device {
 
        struct gpio_desc *reset;
        struct gpio_desc *powerdown;
-       struct gpio_desc *privacy_led;
        struct regulator_bulk_data supplies[OV5693_NUM_SUPPLIES];
        struct clk *xvclk;
 
@@ -657,7 +656,6 @@ static int ov5693_sensor_init(struct ov5693_device *ov5693)
 
 static void ov5693_sensor_powerdown(struct ov5693_device *ov5693)
 {
-       gpiod_set_value_cansleep(ov5693->privacy_led, 0);
        gpiod_set_value_cansleep(ov5693->reset, 1);
        gpiod_set_value_cansleep(ov5693->powerdown, 1);
 
@@ -687,7 +685,6 @@ static int ov5693_sensor_powerup(struct ov5693_device *ov5693)
 
        gpiod_set_value_cansleep(ov5693->powerdown, 0);
        gpiod_set_value_cansleep(ov5693->reset, 0);
-       gpiod_set_value_cansleep(ov5693->privacy_led, 1);
 
        usleep_range(5000, 7500);
 
@@ -1201,13 +1198,6 @@ static int ov5693_configure_gpios(struct ov5693_device *ov5693)
                return PTR_ERR(ov5693->powerdown);
        }
 
-       ov5693->privacy_led = devm_gpiod_get_optional(ov5693->dev, "privacy-led",
-                                                     GPIOD_OUT_LOW);
-       if (IS_ERR(ov5693->privacy_led)) {
-               dev_err(ov5693->dev, "Error fetching privacy-led GPIO\n");
-               return PTR_ERR(ov5693->privacy_led);
-       }
-
        return 0;
 }