mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 02:36:02 +00:00
c38a7db56d
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>
16 lines
363 B
C
16 lines
363 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* include/video/platform_lcd.h
|
|
*
|
|
* Copyright 2008 Simtec Electronics
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
*
|
|
* Generic platform-device LCD power control interface.
|
|
*/
|
|
|
|
struct plat_lcd_data;
|
|
|
|
struct plat_lcd_data {
|
|
int (*probe)(struct plat_lcd_data *);
|
|
void (*set_power)(struct plat_lcd_data *, unsigned int power);
|
|
};
|