mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-09-03 02:16:09 +02:00

Rename struct bd6107_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: Lee Jones <lee@kernel.org> Cc: Daniel Thompson <daniel.thompson@linaro.org> Cc: Jingoo Han <jingoohan1@gmail.com> 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-3-tzimmermann@suse.de
16 lines
235 B
C
16 lines
235 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* bd6107.h - Rohm BD6107 LEDs Driver
|
|
*/
|
|
#ifndef __BD6107_H__
|
|
#define __BD6107_H__
|
|
|
|
struct device;
|
|
|
|
struct bd6107_platform_data {
|
|
struct device *dev;
|
|
unsigned int def_value;
|
|
};
|
|
|
|
#endif
|