Changes in uspace/app/usbinfo/main.c [cb61e8f:e387d0f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/usbinfo/main.c
rcb61e8f re387d0f 136 136 _OPTION("-T --descriptor-tree-full", "Print detailed descriptor tree"); 137 137 _OPTION("-s --strings", "Try to print all string descriptors."); 138 _OPTION("-S --status", "Get status of the device.");139 138 140 139 printf("\n"); … … 153 152 {"descriptor-tree-full", no_argument, NULL, 'T'}, 154 153 {"strings", no_argument, NULL, 's'}, 155 {"status", no_argument, NULL, 'S'},156 154 {0, 0, NULL, 0} 157 155 }; 158 static const char *short_options = "himtTs S";156 static const char *short_options = "himtTs"; 159 157 160 158 static usbinfo_action_t actions[] = { … … 182 180 .opt = 's', 183 181 .action = dump_strings, 184 .active = false185 },186 {187 .opt = 'S',188 .action = dump_status,189 182 .active = false 190 183 },
Note:
See TracChangeset
for help on using the changeset viewer.