Verbose flag in tree mode shows vendor and product name. #3
Conversation
When running `lsusb -tv`, devices should have the vendor and product name appended to the row. Signed-off-by: Dafydd Crosby <dtcrsby@gmail.com>
gregkh
added a commit
that referenced
this pull request
Aug 12, 2011
Verbose flag in tree mode shows vendor and product name.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
When running
lsusb -tv
, devices should have the vendor andproduct name appended to the row.
Before:
Bus# 4
-Dev# 1 Vendor 0x1d6b Product 0x0001
-Dev# 2 Vendor 0x046d Product 0xc00eAfter:
Bus# 4
-Dev# 1 Vendor 0x1d6b Product 0x0001 Linux Foundation 1.1 root hub
-Dev# 2 Vendor 0x046d Product 0xc00e Logitech, Inc. M-BJ58/M-BJ69 Optical Wheel MouseMoved get_product_string and get_vendor_string to names.c to reduce code duplication
Signed-off-by: Dafydd Crosby dtcrsby@gmail.com