Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 39845764a0ca01a89dca4ff5b4e9d896ee410054 14 lines 251 B view raw
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 8struct device; 9 10struct gpio_backlight_platform_data { 11 struct device *dev; 12}; 13 14#endif