flexcop-usb.c (f835f3ea6b1bcb51bc07f9074b71234a7a00d6e0) | flexcop-usb.c (82fe45f3fbeeb7add918c2c49fbde5b20b780714) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III 4 * flexcop-usb.c - covers the USB part 5 * see flexcop.c for copyright information 6 */ 7#define FC_LOG_PREFIX "flexcop_usb" 8#include "flexcop-usb.h" --- 517 unchanged lines hidden (view full) --- 526 return -ENODEV; 527 break; 528 case USB_SPEED_FULL: 529 info("running at FULL speed."); 530 break; 531 case USB_SPEED_HIGH: 532 info("running at HIGH speed."); 533 break; | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III 4 * flexcop-usb.c - covers the USB part 5 * see flexcop.c for copyright information 6 */ 7#define FC_LOG_PREFIX "flexcop_usb" 8#include "flexcop-usb.h" --- 517 unchanged lines hidden (view full) --- 526 return -ENODEV; 527 break; 528 case USB_SPEED_FULL: 529 info("running at FULL speed."); 530 break; 531 case USB_SPEED_HIGH: 532 info("running at HIGH speed."); 533 break; |
534 case USB_SPEED_SUPER: 535 info("running at SUPER speed."); 536 break; 537 case USB_SPEED_SUPER_PLUS: 538 info("running at SUPER+ speed."); 539 break; |
|
534 case USB_SPEED_UNKNOWN: 535 default: 536 err("cannot handle USB speed because it is unknown."); 537 return -ENODEV; 538 } 539 usb_set_intfdata(fc_usb->uintf, fc_usb); 540 return 0; 541} --- 92 unchanged lines hidden --- | 540 case USB_SPEED_UNKNOWN: 541 default: 542 err("cannot handle USB speed because it is unknown."); 543 return -ENODEV; 544 } 545 usb_set_intfdata(fc_usb->uintf, fc_usb); 546 return 0; 547} --- 92 unchanged lines hidden --- |