Changeset e080332 in mainline for uspace/drv/usbhub/main.c
- Timestamp:
- 2010-12-19T19:38:38Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5f7d96e, 8dd039a
- Parents:
- f568ee7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/main.c
rf568ee7 re080332 32 32 33 33 #include <usb/usbdrv.h> 34 34 35 #include "usbhub.h" 35 36 #include "usbhub_private.h" … … 58 59 int main(int argc, char *argv[]) 59 60 { 61 usb_dprintf_enable(NAME,1); 60 62 usb_lst_init(&usb_hub_list); 61 63 fid_t fid = fibril_create(usb_hub_control_loop, NULL); 62 64 if (fid == 0) { 63 printf("%s: failed to start fibril for HUB devices\n", NAME); 65 dprintf(1, "failed to start fibril for HUB devices"); 66 //printf("%s: failed to start fibril for HUB devices\n", NAME); 64 67 return ENOMEM; 65 68 }
Note:
See TracChangeset
for help on using the changeset viewer.