Changes in / [993a1e1:0c3beeb] in mainline
- Files:
-
- 6 added
- 34 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
.bzrignore
r993a1e1 r0c3beeb 84 84 ./uspace/drv/test1/test1 85 85 ./uspace/drv/test2/test2 86 ./uspace/drv/uhci-hcd/uhci-hcd 87 ./uspace/drv/uhci-rhd/uhci-rhd 86 ./uspace/drv/uhci/uhci 88 87 ./uspace/drv/usbhub/usbhub 89 88 ./uspace/drv/usbhid/usbhid -
boot/arch/amd64/Makefile.inc
r993a1e1 r0c3beeb 43 43 isa \ 44 44 ns8250 \ 45 uhci-hcd \ 46 uhci-rhd \ 45 uhci \ 47 46 usbhub \ 48 47 usbhid \ -
uspace/Makefile
r993a1e1 r0c3beeb 117 117 srv/hw/irc/apic \ 118 118 srv/hw/irc/i8259 \ 119 drv/uhci-hcd \ 120 drv/uhci-rhd \ 119 drv/uhci \ 121 120 drv/usbhid \ 122 121 drv/usbhub \ … … 132 131 srv/hw/irc/apic \ 133 132 srv/hw/irc/i8259 \ 134 drv/uhci-hcd \ 135 drv/uhci-rhd \ 133 drv/uhci \ 136 134 drv/usbhid \ 137 135 drv/usbhub \ -
uspace/app/bdsh/cmds/modules/cat/cat.c
r993a1e1 r0c3beeb 144 144 return CMD_SUCCESS; 145 145 case 'H': 146 printf( "%s",cat_oops);146 printf(cat_oops); 147 147 return CMD_FAILURE; 148 148 case 't': 149 printf( "%s",cat_oops);149 printf(cat_oops); 150 150 return CMD_FAILURE; 151 151 case 'b': 152 printf( "%s",cat_oops);152 printf(cat_oops); 153 153 break; 154 154 case 'm': 155 printf( "%s",cat_oops);155 printf(cat_oops); 156 156 return CMD_FAILURE; 157 157 } -
uspace/app/bdsh/cmds/modules/rm/rm.c
r993a1e1 r0c3beeb 227 227 } 228 228 memset(buff, 0, sizeof(buff)); 229 snprintf(buff, len, "%s",argv[i]);229 snprintf(buff, len, argv[i]); 230 230 231 231 scope = rm_scope(buff); -
uspace/drv/rootvirt/devices.def
r993a1e1 r0c3beeb 23 23 #endif 24 24 /* Virtual USB host controller. */ 25 /*26 25 { 27 26 .name = "usbhc", 28 27 .match_id = "usb&hc=vhc" 29 28 }, 30 */ -
uspace/lib/usb/include/usb/devreq.h
r993a1e1 r0c3beeb 70 70 /** Main parameter to the request. */ 71 71 union { 72 uint16_t value;73 72 /* FIXME: add #ifdefs according to host endianess */ 74 73 struct { … … 76 75 uint8_t value_high; 77 76 }; 77 uint16_t value; 78 78 }; 79 79 /** Auxiliary parameter to the request. -
uspace/lib/usb/src/addrkeep.c
r993a1e1 r0c3beeb 33 33 * @brief Address keeping. 34 34 */ 35 #include <usb/ addrkeep.h>35 #include <usb/hcd.h> 36 36 #include <errno.h> 37 37 #include <assert.h>
Note:
See TracChangeset
for help on using the changeset viewer.