USB hub: Fixes for some port status change handling

This commit is contained in:
Gregory Nutt 2015-04-24 09:57:59 -06:00
parent dc6adde740
commit 27516e0119

View File

@ -2440,12 +2440,12 @@ static int lpc17_transfer_common(struct lpc17_usbhost_s *priv,
int ret;
in = (ed->hw.ctrl & ED_CONTROL_D_MASK) == ED_CONTROL_D_IN;
uvdbg("EP%d %s toggle:%d maxpacket:%d buflen:%d\n",
uvdbg("EP%u %s toggle:%u maxpacket:%u buflen:%lu\n",
(ed->hw.ctrl & ED_CONTROL_EN_MASK) >> ED_CONTROL_EN_SHIFT,
in ? "IN" : "OUT",
(ed->hw.headp & ED_HEADP_C) != 0 ? 1 : 0,
(ed->hw.ctrl & ED_CONTROL_MPS_MASK) >> ED_CONTROL_MPS_SHIFT,
buflen);
(unsigned long)buflen);
/* Get the direction of the endpoint */