Ignore:
File:
1 edited

Legend:

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

    rcb61e8f re387d0f  
    136136        _OPTION("-T --descriptor-tree-full", "Print detailed descriptor tree");
    137137        _OPTION("-s --strings", "Try to print all string descriptors.");
    138         _OPTION("-S --status", "Get status of the device.");
    139138
    140139        printf("\n");
     
    153152        {"descriptor-tree-full", no_argument, NULL, 'T'},
    154153        {"strings", no_argument, NULL, 's'},
    155         {"status", no_argument, NULL, 'S'},
    156154        {0, 0, NULL, 0}
    157155};
    158 static const char *short_options = "himtTsS";
     156static const char *short_options = "himtTs";
    159157
    160158static usbinfo_action_t actions[] = {
     
    182180                .opt = 's',
    183181                .action = dump_strings,
    184                 .active = false
    185         },
    186         {
    187                 .opt = 'S',
    188                 .action = dump_status,
    189182                .active = false
    190183        },
Note: See TracChangeset for help on using the changeset viewer.