Changes in uspace/app/usbinfo/main.c [e387d0f:a458bc9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/usbinfo/main.c
re387d0f ra458bc9 134 134 _OPTION("-m --match-ids", "Print match ids generated for the device."); 135 135 _OPTION("-t --descriptor-tree", "Print descriptor tree."); 136 _OPTION("-T --descriptor-tree-full", "Print detailed descriptor tree");137 136 _OPTION("-s --strings", "Try to print all string descriptors."); 138 137 … … 150 149 {"match-ids", no_argument, NULL, 'm'}, 151 150 {"descriptor-tree", no_argument, NULL, 't'}, 152 {"descriptor-tree-full", no_argument, NULL, 'T'},153 151 {"strings", no_argument, NULL, 's'}, 154 152 {0, 0, NULL, 0} 155 153 }; 156 static const char *short_options = "himt Ts";154 static const char *short_options = "himts"; 157 155 158 156 static usbinfo_action_t actions[] = { … … 170 168 .opt = 't', 171 169 .action = dump_descriptor_tree_brief, 172 .active = false173 },174 {175 .opt = 'T',176 .action = dump_descriptor_tree_full,177 170 .active = false 178 171 },
Note:
See TracChangeset
for help on using the changeset viewer.