From 927d6b620de045dafe9a5fcd90fbc617a909abf0 Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Tue, 5 Jul 2022 15:41:14 -0500 Subject: [PATCH] video: ov2640: cleanup unused struct fields When we moved to gpio_dt_spec forgot to remove the older fields used for gpio related access. Remove them as they are used by the driver anymore. Signed-off-by: Kumar Gala --- drivers/video/ov2640.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/video/ov2640.c b/drivers/video/ov2640.c index cf1ed674790..8c9c916c4a4 100644 --- a/drivers/video/ov2640.c +++ b/drivers/video/ov2640.c @@ -438,9 +438,6 @@ struct ov2640_config { }; struct ov2640_data { - const struct device *reset_gpio; - uint8_t reset_pin; - gpio_dt_flags_t reset_pin_flags; struct video_format fmt; };