]> Git Repo - linux.git/blob - include/linux/platform_data/pwm-renesas-tpu.h
Merge remote-tracking branch 'linus/master' into testing
[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__ */
This page took 0.030201 seconds and 4 git commands to generate.