summaryrefslogtreecommitdiff
path: root/include/video
diff options
context:
space:
mode:
authorThomas Zimmermann <tzimmermann@suse.de>2024-09-06 09:52:31 +0200
committerLee Jones <lee@kernel.org>2024-09-30 16:49:42 +0100
commitc38a7db56d18b3ec07f3ad52c1e3f1f05c375011 (patch)
tree296c18d744b9b4270256ec21b6de0c0fed484e68 /include/video
parent516f3251429068a963d498a35441c0afaea6d1a4 (diff)
downloadlwn-c38a7db56d18b3ec07f3ad52c1e3f1f05c375011.tar.gz
lwn-c38a7db56d18b3ec07f3ad52c1e3f1f05c375011.zip
backlight: platform_lcd: Remove match_fb from struct plat_lcd_data
The match_fb callback in struct plat_lcd_data is unused. Remove it. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Link: https://lore.kernel.org/r/20240906075439.98476-18-tzimmermann@suse.de Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'include/video')
-rw-r--r--include/video/platform_lcd.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/video/platform_lcd.h b/include/video/platform_lcd.h
index 6a95184a28c1..2bdf46519298 100644
--- a/include/video/platform_lcd.h
+++ b/include/video/platform_lcd.h
@@ -8,11 +8,8 @@
*/
struct plat_lcd_data;
-struct fb_info;
struct plat_lcd_data {
int (*probe)(struct plat_lcd_data *);
void (*set_power)(struct plat_lcd_data *, unsigned int power);
- int (*match_fb)(struct plat_lcd_data *, struct fb_info *);
};
-