diff options
Diffstat (limited to 'drivers/usb/common/debug.c')
| -rw-r--r-- | drivers/usb/common/debug.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/usb/common/debug.c b/drivers/usb/common/debug.c index 92a986aeaa5d..ba849c7bc5c7 100644 --- a/drivers/usb/common/debug.c +++ b/drivers/usb/common/debug.c @@ -1,8 +1,8 @@  // SPDX-License-Identifier: GPL-2.0 -/** +/*   * Common USB debugging functions   * - * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com + * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com   *   * Authors: Felipe Balbi <[email protected]>,   *	    Sebastian Andrzej Siewior <[email protected]> @@ -53,15 +53,15 @@ static const char *usb_decode_device_feature(u16 wValue)  static const char *usb_decode_test_mode(u16 wIndex)  {  	switch (wIndex) { -	case TEST_J: +	case USB_TEST_J:  		return ": TEST_J"; -	case TEST_K: +	case USB_TEST_K:  		return ": TEST_K"; -	case TEST_SE0_NAK: +	case USB_TEST_SE0_NAK:  		return ": TEST_SE0_NAK"; -	case TEST_PACKET: +	case USB_TEST_PACKET:  		return ": TEST_PACKET"; -	case TEST_FORCE_EN: +	case USB_TEST_FORCE_ENABLE:  		return ": TEST_FORCE_EN";  	default:  		return ": UNKNOWN"; @@ -207,7 +207,7 @@ static void usb_decode_set_isoch_delay(__u8 wValue, char *str, size_t size)  	snprintf(str, size, "Set Isochronous Delay(Delay = %d ns)", wValue);  } -/** +/*   * usb_decode_ctrl - returns a string representation of ctrl request   */  const char *usb_decode_ctrl(char *str, size_t size, __u8 bRequestType,  |