1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-31 16:21:11 +03:00

usb_id: add "image" class

This commit is contained in:
Kay Sievers 2008-12-29 05:54:44 +01:00
parent 12dda308d9
commit e6fa87a11f

View File

@ -54,22 +54,24 @@ static void set_usb_iftype(char *to, int if_class_num, size_t len)
case 1:
type = "audio";
break;
case 2: /* CDC-Control */
break;
case 3:
type = "hid";
break;
case 5: /* Physical */
break;
case 6:
type = "image";
break;
case 7:
type = "printer";
break;
case 8:
type = "storage";
break;
case 2: /* CDC-Control */
break;
case 5: /* Physical */
break;
case 6: /* Image */
break;
case 9: /* HUB */
case 9:
type = "hub";
break;
case 0x0a: /* CDC-Data */
break;
@ -84,7 +86,7 @@ static void set_usb_iftype(char *to, int if_class_num, size_t len)
break;
case 0xe0: /* Wireless Controller */
break;
case 0xf2: /* Application-specific */
case 0xfe: /* Application-specific */
break;
case 0xff: /* Vendor-specific */
break;