diff --git a/sys/dev/pwm/pwmc.h b/sys/dev/pwm/pwmc.h index 9940c8cad9e9..05832a9f318c 100644 --- a/sys/dev/pwm/pwmc.h +++ b/sys/dev/pwm/pwmc.h @@ -34,9 +34,9 @@ #define PWM_POLARITY_INVERTED (1 << 0) struct pwm_state { - int channel; - unsigned int period; - unsigned int duty; + u_int channel; + u_int period; + u_int duty; uint32_t flags; bool enable; };