Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/usbinfo/main.c

    re387d0f ra458bc9  
    134134        _OPTION("-m --match-ids", "Print match ids generated for the device.");
    135135        _OPTION("-t --descriptor-tree", "Print descriptor tree.");
    136         _OPTION("-T --descriptor-tree-full", "Print detailed descriptor tree");
    137136        _OPTION("-s --strings", "Try to print all string descriptors.");
    138137
     
    150149        {"match-ids", no_argument, NULL, 'm'},
    151150        {"descriptor-tree", no_argument, NULL, 't'},
    152         {"descriptor-tree-full", no_argument, NULL, 'T'},
    153151        {"strings", no_argument, NULL, 's'},
    154152        {0, 0, NULL, 0}
    155153};
    156 static const char *short_options = "himtTs";
     154static const char *short_options = "himts";
    157155
    158156static usbinfo_action_t actions[] = {
     
    170168                .opt = 't',
    171169                .action = dump_descriptor_tree_brief,
    172                 .active = false
    173         },
    174         {
    175                 .opt = 'T',
    176                 .action = dump_descriptor_tree_full,
    177170                .active = false
    178171        },
Note: See TracChangeset for help on using the changeset viewer.