1 /* $NetBSD: pwm.h,v 1.1.1.1.6.2 2017/08/28 17:53:04 skrll Exp $ */ 2 3 /* 4 * This header provides constants for most PWM bindings. 5 * 6 * Most PWM bindings can include a flags cell as part of the PWM specifier. 7 * In most cases, the format of the flags cell uses the standard values 8 * defined in this header. 9 */ 10 11 #ifndef _DT_BINDINGS_PWM_PWM_H 12 #define _DT_BINDINGS_PWM_PWM_H 13 14 #define PWM_POLARITY_INVERTED (1 << 0) 15 16 #endif 17