mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-05 13:25:20 +02:00

The callback set_power in struct omap_backlight_config is not implemented anywhere. Remove it from the structure and driver. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org> Link: https://lore.kernel.org/r/20240319093915.31778-3-tzimmermann@suse.de Signed-off-by: Lee Jones <lee@kernel.org>
12 lines
179 B
C
12 lines
179 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __OMAP1_BL_H__
|
|
#define __OMAP1_BL_H__
|
|
|
|
#include <linux/device.h>
|
|
|
|
struct omap_backlight_config {
|
|
int default_intensity;
|
|
};
|
|
|
|
#endif
|