1*48038c4aSMugunthan V N /*
2*48038c4aSMugunthan V N  * This header provides constants for most PWM bindings.
3*48038c4aSMugunthan V N  *
4*48038c4aSMugunthan V N  * Most PWM bindings can include a flags cell as part of the PWM specifier.
5*48038c4aSMugunthan V N  * In most cases, the format of the flags cell uses the standard values
6*48038c4aSMugunthan V N  * defined in this header.
7*48038c4aSMugunthan V N  */
8*48038c4aSMugunthan V N 
9*48038c4aSMugunthan V N #ifndef _DT_BINDINGS_PWM_PWM_H
10*48038c4aSMugunthan V N #define _DT_BINDINGS_PWM_PWM_H
11*48038c4aSMugunthan V N 
12*48038c4aSMugunthan V N #define PWM_POLARITY_INVERTED			(1 << 0)
13*48038c4aSMugunthan V N 
14*48038c4aSMugunthan V N #endif
15