mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 16:20:53 +07:00
cc01272986
omap1 backlight platform data resides inside plat/board.h while it should be inside include/linux/... Move the omap1 backlight platform data to include/linux/platform_data/. Cc: Richard Purdie <rpurdie@rpsys.net> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Cc: linux-fbdev@vger.kernel.org Signed-off-by: Igor Grinberg <grinberg@compulab.co.il> Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
12 lines
190 B
C
12 lines
190 B
C
#ifndef __OMAP1_BL_H__
|
|
#define __OMAP1_BL_H__
|
|
|
|
#include <linux/device.h>
|
|
|
|
struct omap_backlight_config {
|
|
int default_intensity;
|
|
int (*set_power)(struct device *dev, int state);
|
|
};
|
|
|
|
#endif
|