blob: 4eac77b04203f82c29b536b1ea17ea4b600db7a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* Tegra PWM backlight data *
*
* Copyright (C) 2011 NVIDIA Corporation
* Author: Renuka Apte <rapte@nvidia.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
*/
#ifndef TEGRA_PWM_BL_H
#define TEGRA_PWM_BL_H
struct platform_tegra_pwm_backlight_data {
int which_dc;
int which_pwm;
unsigned int dft_brightness;
unsigned int max_brightness;
unsigned int period;
unsigned int clk_div;
unsigned int clk_select;
};
#endif /* TERGA_PWM_BL_H */
|