We want the USB fixes in here, and this resolves a merge issue found in
linux-next.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
                if (!set || (tmode & 0xff) != 0)
                        return -EINVAL;
  
-               switch (tmode >> 8) {
+               tmode >>= 8;
+               switch (tmode) {
 -              case TEST_J:
 -              case TEST_K:
 -              case TEST_SE0_NAK:
 -              case TEST_PACKET:
 +              case USB_TEST_J:
 +              case USB_TEST_K:
 +              case USB_TEST_SE0_NAK:
 +              case USB_TEST_PACKET:
                        cdns3_set_register_bit(&priv_dev->regs->usb_cmd,
                                               USB_CMD_STMODE |
                                               USB_STS_TMODE_SEL(tmode - 1));