2017-12-25 20:54:33 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2015-07-30 02:00:36 +09:00
|
|
|
/*
|
2011-07-20 23:44:21 +09:00
|
|
|
* Copyright (c) 2011 Samsung Electronics Co., Ltd.
|
|
|
|
* http://www.samsung.com
|
|
|
|
*/
|
|
|
|
|
2019-09-02 17:47:55 +02:00
|
|
|
#ifndef __ASM_PLAT_BACKLIGHT_S3C64XX_H
|
|
|
|
#define __ASM_PLAT_BACKLIGHT_S3C64XX_H __FILE__
|
2011-07-20 23:44:21 +09:00
|
|
|
|
|
|
|
/* samsung_bl_gpio_info - GPIO info for PWM Backlight control
|
|
|
|
* @no: GPIO number for PWM timer out
|
|
|
|
* @func: Special function of GPIO line for PWM timer
|
|
|
|
*/
|
|
|
|
struct samsung_bl_gpio_info {
|
|
|
|
int no;
|
|
|
|
int func;
|
|
|
|
};
|
|
|
|
|
2011-07-29 10:23:45 +09:00
|
|
|
extern void __init samsung_bl_set(struct samsung_bl_gpio_info *gpio_info,
|
2011-07-20 23:44:21 +09:00
|
|
|
struct platform_pwm_backlight_data *bl_data);
|
|
|
|
|
2019-09-02 17:47:55 +02:00
|
|
|
#endif /* __ASM_PLAT_BACKLIGHT_S3C64XX_H */
|