diff options
author | Hans Petter Selasky <hselasky@FreeBSD.org> | 2015-11-23 12:55:37 +0000 |
---|---|---|
committer | Hans Petter Selasky <hselasky@FreeBSD.org> | 2015-11-23 12:55:37 +0000 |
commit | db8409e00a74dafa62eddc5a7ee6980ff006e93d (patch) | |
tree | 21f8cfa89c98034498e44eacb8af0b116dcf9c87 | |
parent | 1765946ba9c88737335b0cd1d018c7c60842adf8 (diff) |
Notes
-rw-r--r-- | sys/dev/usb/controller/uhci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/uhci.h b/sys/dev/usb/controller/uhci.h index 8a6ce44703103..801952a73f6fa 100644 --- a/sys/dev/usb/controller/uhci.h +++ b/sys/dev/usb/controller/uhci.h @@ -97,7 +97,7 @@ struct uhci_td { #define UHCI_TD_GET_ENDPT(s) (((s) >> 15) & 0xf) #define UHCI_TD_SET_DT(t) ((t) << 19) #define UHCI_TD_GET_DT(s) (((s) >> 19) & 1) -#define UHCI_TD_SET_MAXLEN(l) (((l)-1) << 21) +#define UHCI_TD_SET_MAXLEN(l) (((l)-1U) << 21) #define UHCI_TD_GET_MAXLEN(s) ((((s) >> 21) + 1) & 0x7ff) #define UHCI_TD_MAXLEN_MASK 0xffe00000 volatile uint32_t td_buffer; |