Changeset 9e279c4 in mainline for uspace/app/usbinfo/list.c


Ignore:
Timestamp:
2012-07-20T15:25:32Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d355aa8
Parents:
3795f9c
Message:

Merge lsusb to usbinfo.

Use -l or —list to get the list.

File:
1 moved

Legend:

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

    r3795f9c r9e279c4  
    4747#include <usb/hc.h>
    4848
    49 #define NAME "lsusb"
     49#include "usbinfo.h"
    5050
    5151#define MAX_USB_ADDRESS USB11_ADDRESS_MAX
     
    9090}
    9191
    92 int main(int argc, char *argv[])
     92void list(void)
    9393{
    9494        category_id_t usbhc_cat;
     
    102102                printf(NAME ": Error resolving category '%s'",
    103103                    USB_HC_CATEGORY);
    104                 return 1;
     104                return;
    105105        }
    106106
     
    108108        if (rc != EOK) {
    109109                printf(NAME ": Error getting list of host controllers.\n");
    110                 return 1;
     110                return;
    111111        }
    112112
     
    131131
    132132        free(svcs);
    133 
    134         return 0;
    135133}
    136134
Note: See TracChangeset for help on using the changeset viewer.