1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * gpio_backlight.h - Simple GPIO-controlled backlight
4  */
5 #ifndef __GPIO_BACKLIGHT_H__
6 #define __GPIO_BACKLIGHT_H__
7 
8 struct device;
9 
10 struct gpio_backlight_platform_data {
11 	struct device *fbdev;
12 	int gpio;
13 	int def_value;
14 	const char *name;
15 };
16 
17 #endif
18