Kukjin Kim | 4a7bf56 | 2015-07-30 02:00:36 +0900 | [diff] [blame] | 1 | /* |
Banajit Goswami | f00207b | 2011-07-20 23:44:21 +0900 | [diff] [blame] | 2 | * Copyright (c) 2011 Samsung Electronics Co., Ltd. |
| 3 | * http://www.samsung.com |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | */ |
| 9 | |
| 10 | #ifndef __ASM_PLAT_BACKLIGHT_H |
| 11 | #define __ASM_PLAT_BACKLIGHT_H __FILE__ |
| 12 | |
| 13 | /* samsung_bl_gpio_info - GPIO info for PWM Backlight control |
| 14 | * @no: GPIO number for PWM timer out |
| 15 | * @func: Special function of GPIO line for PWM timer |
| 16 | */ |
| 17 | struct samsung_bl_gpio_info { |
| 18 | int no; |
| 19 | int func; |
| 20 | }; |
| 21 | |
Kukjin Kim | b8a297d | 2011-07-29 10:23:45 +0900 | [diff] [blame] | 22 | extern void __init samsung_bl_set(struct samsung_bl_gpio_info *gpio_info, |
Banajit Goswami | f00207b | 2011-07-20 23:44:21 +0900 | [diff] [blame] | 23 | struct platform_pwm_backlight_data *bl_data); |
| 24 | |
| 25 | #endif /* __ASM_PLAT_BACKLIGHT_H */ |