1 1.1 jmcneill /* $NetBSD: pwm.h,v 1.1.1.2 2017/11/30 19:40:51 jmcneill Exp $ */ 2 1.1 jmcneill 3 1.1.1.2 jmcneill /* SPDX-License-Identifier: GPL-2.0 */ 4 1.1 jmcneill /* 5 1.1 jmcneill * This header provides constants for most PWM bindings. 6 1.1 jmcneill * 7 1.1 jmcneill * Most PWM bindings can include a flags cell as part of the PWM specifier. 8 1.1 jmcneill * In most cases, the format of the flags cell uses the standard values 9 1.1 jmcneill * defined in this header. 10 1.1 jmcneill */ 11 1.1 jmcneill 12 1.1 jmcneill #ifndef _DT_BINDINGS_PWM_PWM_H 13 1.1 jmcneill #define _DT_BINDINGS_PWM_PWM_H 14 1.1 jmcneill 15 1.1 jmcneill #define PWM_POLARITY_INVERTED (1 << 0) 16 1.1 jmcneill 17 1.1 jmcneill #endif 18