summaryrefslogtreecommitdiff
path: root/arch/arm/mach-exynos/include/mach/pwm_backlight.h
blob: c7d3a91e318396b3698cb0022a48971654ba0fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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_ */