| .. | .. |
|---|
| 256 | 256 | } |
|---|
| 257 | 257 | |
|---|
| 258 | 258 | if (unlikely(urb->unlinked)) { |
|---|
| 259 | | - COUNT(ehci->stats.unlink); |
|---|
| 259 | + INCR(ehci->stats.unlink); |
|---|
| 260 | 260 | } else { |
|---|
| 261 | 261 | /* report non-error and short read status as zero */ |
|---|
| 262 | 262 | if (status == -EINPROGRESS || status == -EREMOTEIO) |
|---|
| 263 | 263 | status = 0; |
|---|
| 264 | | - COUNT(ehci->stats.complete); |
|---|
| 264 | + INCR(ehci->stats.complete); |
|---|
| 265 | 265 | } |
|---|
| 266 | 266 | |
|---|
| 267 | 267 | #ifdef EHCI_URB_TRACE |
|---|
| .. | .. |
|---|
| 874 | 874 | switch (urb->dev->speed) { |
|---|
| 875 | 875 | case USB_SPEED_LOW: |
|---|
| 876 | 876 | info1 |= QH_LOW_SPEED; |
|---|
| 877 | | - /* FALL THROUGH */ |
|---|
| 877 | + fallthrough; |
|---|
| 878 | 878 | |
|---|
| 879 | 879 | case USB_SPEED_FULL: |
|---|
| 880 | 880 | /* EPS 0 means "full" */ |
|---|