aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/arch/arm/mach-exynos/include/mach/pwm_backlight.h
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/arch/arm/mach-exynos/include/mach/pwm_backlight.h')
-rw-r--r--roms/u-boot/arch/arm/mach-exynos/include/mach/pwm_backlight.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/roms/u-boot/arch/arm/mach-exynos/include/mach/pwm_backlight.h b/roms/u-boot/arch/arm/mach-exynos/include/mach/pwm_backlight.h
new file mode 100644
index 000000000..c7d3a91e3
--- /dev/null
+++ b/roms/u-boot/arch/arm/mach-exynos/include/mach/pwm_backlight.h
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (C) 2012 Samsung Electronics
+ *
+ * Author: Donghwa Lee <dh09.lee@samsung.com>
+ */
+
+#ifndef _PWM_BACKLIGHT_H_
+#define _PWM_BACKLIGHT_H_
+
+struct pwm_backlight_data {
+ int pwm_id;
+ int period;
+ int max_brightness;
+ int brightness;
+};
+
+extern int exynos_pwm_backlight_init(struct pwm_backlight_data *pd);
+
+#endif /* _PWM_BACKLIGHT_H_ */