Changeset 05b59393 in mainline for uspace/lib
- Timestamp:
- 2017-10-04T18:02:14Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c9e88da
- Parents:
- 0b2d369
- Location:
- uspace/lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/cap.c
r0b2d369 r05b59393 185 185 sunit = NULL; 186 186 187 if (cap->cunit < 0 || cap->cunit >= CU_LIMIT) 188 assert(false); 187 assert(cap->cunit < CU_LIMIT); 189 188 190 189 rc = ipow10_u64(cap->dp, &div); -
uspace/lib/hound/src/client.c
r0b2d369 r05b59393 48 48 49 49 /** Stream structure */ 50 typedefstruct hound_stream {50 struct hound_stream { 51 51 /** link in context's list */ 52 52 link_t link; … … 59 59 /** Stream flags */ 60 60 int flags; 61 } hound_stream_t;61 }; 62 62 63 63 /** … … 72 72 73 73 /** Hound client context structure */ 74 typedefstruct hound_context {74 struct hound_context { 75 75 /** Audio session */ 76 76 hound_sess_t *session; … … 89 89 /** Assigned context id */ 90 90 hound_context_id_t id; 91 } hound_context_t;91 }; 92 92 93 93 /** -
uspace/lib/nettl/src/amap.c
r0b2d369 r05b59393 58 58 #include <stdint.h> 59 59 #include <stdlib.h> 60 61 static portrng_flags_t aflags_to_pflags(amap_flags_t flags) 62 { 63 // FIXME: either use a single type, or provide a proper conversion 64 return (portrng_flags_t) flags; 65 } 60 66 61 67 /** Create association map. … … 378 384 mepp = *epp; 379 385 380 rc = portrng_alloc(repla->portrng, epp->local.port, arg, flags,386 rc = portrng_alloc(repla->portrng, epp->local.port, arg, aflags_to_pflags(flags), 381 387 &mepp.local.port); 382 388 if (rc != EOK) { … … 422 428 mepp = *epp; 423 429 424 rc = portrng_alloc(laddr->portrng, epp->local.port, arg, flags,430 rc = portrng_alloc(laddr->portrng, epp->local.port, arg, aflags_to_pflags(flags), 425 431 &mepp.local.port); 426 432 if (rc != EOK) { … … 466 472 mepp = *epp; 467 473 468 rc = portrng_alloc(llink->portrng, epp->local.port, arg, flags,474 rc = portrng_alloc(llink->portrng, epp->local.port, arg, aflags_to_pflags(flags), 469 475 &mepp.local.port); 470 476 if (rc != EOK) { … … 498 504 mepp = *epp; 499 505 500 rc = portrng_alloc(map->unspec, epp->local.port, arg, flags,506 rc = portrng_alloc(map->unspec, epp->local.port, arg, aflags_to_pflags(flags), 501 507 &mepp.local.port); 502 508 if (rc != EOK) { -
uspace/lib/usb/src/usb.c
r0b2d369 r05b59393 73 73 const char *usb_str_transfer_type(usb_transfer_type_t t) 74 74 { 75 if ( t >= ARRAY_SIZE(str_transfer_type)) {75 if ((size_t)t >= ARRAY_SIZE(str_transfer_type)) { 76 76 return "invalid"; 77 77 } … … 86 86 const char *usb_str_transfer_type_short(usb_transfer_type_t t) 87 87 { 88 if ( t >= ARRAY_SIZE(str_transfer_type_short)) {88 if ((size_t)t >= ARRAY_SIZE(str_transfer_type_short)) { 89 89 return "invl"; 90 90 } -
uspace/lib/usbdev/src/devdrv.c
r0b2d369 r05b59393 53 53 54 54 /** USB device structure. */ 55 typedefstruct usb_device {55 struct usb_device { 56 56 /** Connection to device on USB bus */ 57 57 usb_dev_session_t *bus_session; … … 95 95 */ 96 96 void *driver_data; 97 } usb_device_t;97 }; 98 98 99 99 /** Count number of pipes the driver expects.
Note:
See TracChangeset
for help on using the changeset viewer.