summaryrefslogtreecommitdiff
path: root/include/linux/mfd/ab8500/pwmleds.h
blob: e31658280a0e91064073225e8830471aaa2754d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright ST-Ericsson 2012.
 *
 * Author: Naga Radhesh <naga.radheshy@stericsson.com>
 * Licensed under GPLv2.
 */
#ifndef _AB8500_PWMLED_H
#define _AB8500_PWMLED_H

struct ab8500_led_pwm {
	int	pwm_id;
	int	blink_en;
};

struct ab8500_pwmled_platform_data {
	int	num_pwm;
	struct	ab8500_led_pwm *leds;
};

#endif