Merge branch 'kconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
[cascardo/linux.git] / include / linux / platform_data / pwm-renesas-tpu.h
1 #ifndef __PWM_RENESAS_TPU_H__
2 #define __PWM_RENESAS_TPU_H__
3
4 #include <linux/pwm.h>
5
6 #define TPU_CHANNEL_MAX         4
7
8 struct tpu_pwm_channel_data {
9         enum pwm_polarity polarity;
10 };
11
12 struct tpu_pwm_platform_data {
13         struct tpu_pwm_channel_data channels[TPU_CHANNEL_MAX];
14 };
15
16 #endif /* __PWM_RENESAS_TPU_H__ */