mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-06 05:02:31 +00:00
7fa1675e84
Rename struct lv5207lp_platform_data.fbdev to 'dev', as it stores a pointer to the Linux platform device; not the fbdev device. Makes the code easier to understand. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> 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: Javier Martinez Canillas <javierm@redhat.com> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20230613110953.24176-7-tzimmermann@suse.de
17 lines
271 B
C
17 lines
271 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* lv5207lp.h - Sanyo LV5207LP LEDs Driver
|
|
*/
|
|
#ifndef __LV5207LP_H__
|
|
#define __LV5207LP_H__
|
|
|
|
struct device;
|
|
|
|
struct lv5207lp_platform_data {
|
|
struct device *dev;
|
|
unsigned int max_value;
|
|
unsigned int def_value;
|
|
};
|
|
|
|
#endif
|