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>
11 lines
190 B
C
11 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
|