Home | History | Annotate | Line # | Download | only in pwm
pwm.h revision 1.1
      1 /*	$NetBSD: pwm.h,v 1.1 2017/06/15 20:14:23 jmcneill 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