blob: 93d101d28943f1659fb1f328f7c16bc6c5566b7b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Luotao Fu41c42ff2009-02-11 13:24:40 -08002/*
3 * PWM LED driver data - see drivers/leds/leds-pwm.c
4 */
5#ifndef __LINUX_LEDS_PWM_H
6#define __LINUX_LEDS_PWM_H
7
8struct led_pwm {
9 const char *name;
10 const char *default_trigger;
Peter Ujfalusi9ea6cda2012-12-21 01:43:55 -080011 unsigned pwm_id __deprecated;
Luotao Fu41c42ff2009-02-11 13:24:40 -080012 u8 active_low;
13 unsigned max_brightness;
14 unsigned pwm_period_ns;
15};
16
17struct led_pwm_platform_data {
18 int num_leds;
19 struct led_pwm *leds;
20};
21
22#endif