2022-03-05 21:17:59 +05:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2021-10-27 18:46:41 +05:00
|
|
|
#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
|