Files

15 lines
251 B
C
Raw Permalink Normal View History

/* SPDX-License-Identifier: GPL-2.0-only */
2013-07-04 21:13:24 +02:00
/*
* gpio_backlight.h - Simple GPIO-controlled backlight
*/
#ifndef __GPIO_BACKLIGHT_H__
#define __GPIO_BACKLIGHT_H__
struct device;
struct gpio_backlight_platform_data {
struct device *dev;
2013-07-04 21:13:24 +02:00
};
#endif