diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-11-26 13:31:37 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2008-11-26 13:31:37 +0100 |
commit | 62a7b2d5a5dc731984e342ce249e25ffd1b738a6 (patch) | |
tree | 13d785165c2a82b499a17ba854a52126b6db2025 | |
parent | 74463b75fae2c5fcae27a968e14354097e456522 (diff) |
usb_id: fix switch statement for video type
Introducing the video type, creating a fall-through case where other
devices might now be declared as type video.
-rw-r--r-- | extras/usb_id/usb_id.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extras/usb_id/usb_id.c b/extras/usb_id/usb_id.c index 91e3ecce4d..ce1eb0b9fb 100644 --- a/extras/usb_id/usb_id.c +++ b/extras/usb_id/usb_id.c @@ -70,6 +70,7 @@ static void set_usb_iftype(char *to, int if_class_num, size_t len) case 0x0a: /* CDC-Data */ case 0x0b: /* Chip/Smart Card */ case 0x0d: /* Content Security */ + break; case 0x0e: type = "video"; break; |