mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 05:45:20 +00:00
ed369def91
Rename the field 'fbdev' in struct gpio_backlight_platform_data and struct gpio_backlight to 'dev', as they store pointers to the Linux platform device; not the fbdev device. Makes the code easier to understand. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Cc: Rich Felker <dalias@libc.org> Cc: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Cc: Lee Jones <lee@kernel.org> Cc: Daniel Thompson <daniel.thompson@linaro.org> Cc: Jingoo Han <jingoohan1@gmail.com> Cc: linux-sh@vger.kernel.org Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20230613110953.24176-5-tzimmermann@suse.de
15 lines
251 B
C
15 lines
251 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* 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;
|
|
};
|
|
|
|
#endif
|