Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * This header provides constants for most PWM bindings.
0004  *
0005  * Most PWM bindings can include a flags cell as part of the PWM specifier.
0006  * In most cases, the format of the flags cell uses the standard values
0007  * defined in this header.
0008  */
0009 
0010 #ifndef _DT_BINDINGS_PWM_PWM_H
0011 #define _DT_BINDINGS_PWM_PWM_H
0012 
0013 #define PWM_POLARITY_INVERTED           (1 << 0)
0014 
0015 #endif