Changeset 3ce5162 in mainline
- Timestamp:
- 2012-01-25T18:03:38Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5c5f522
- Parents:
- ed6fdc7 (diff), 5cc9eba (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/isa/isa.c
red6fdc7 r3ce5162 401 401 402 402 val = skip_spaces(val); 403 irq = (int) strtol(val, &end, 10);403 irq = (int) strtol(val, &end, 10); 404 404 405 405 if (val != end) -
uspace/drv/bus/usb/usbhid/mouse/mousedev.c
red6fdc7 r3ce5162 167 167 return result; 168 168 } 169 /*----------------------------------------------------------------------------*/ 169 170 170 static bool usb_mouse_process_report(usb_hid_dev_t *hid_dev, 171 171 usb_mouse_t *mouse_dev) … … 305 305 return EOK; 306 306 } 307 /*----------------------------------------------------------------------------*/ 307 308 308 /** Get highest index of a button mentioned in given report. 309 309 * -
uspace/drv/nic/e1k/e1k.c
red6fdc7 r3ce5162 1402 1402 fibril_mutex_unlock(&e1000->rx_lock); 1403 1403 return EOK; 1404 1404 1405 error: 1405 1406 for (i = 0; i < E1000_RX_FRAME_COUNT; i++) { … … 1410 1411 } 1411 1412 } 1413 1412 1414 if (e1000->rx_frame_phys != NULL) { 1413 1415 free(e1000->rx_frame_phys); 1414 1416 e1000->rx_frame_phys = NULL; 1415 1417 } 1418 1416 1419 if (e1000->rx_frame_virt != NULL) { 1417 1420 free(e1000->rx_frame_virt); 1418 1421 e1000->rx_frame_phys = NULL; 1419 1422 } 1423 1420 1424 return rc; 1421 1425 } … … 1642 1646 e1000->tx_frame_phys = NULL; 1643 1647 } 1648 1644 1649 dmamem_unmap_anonymous(e1000->tx_ring_virt); 1645 1650 } -
uspace/drv/nic/lo/lo.c
red6fdc7 r3ce5162 127 127 printf("%s: Adding loopback device '%s'\n", NAME, dev->name); 128 128 return EOK; 129 129 130 error: 130 131 if (bound) 131 132 ddf_fun_unbind(fun); 133 132 134 if (fun != NULL) 133 135 ddf_fun_destroy(fun); -
uspace/drv/nic/rtl8139/general.h
red6fdc7 r3ce5162 29 29 /** @file 30 30 * 31 * 31 * General functions and structures used in rtl8139 driver 32 32 */ 33 33 -
uspace/lib/drv/include/usbhc_iface.h
red6fdc7 r3ce5162 27 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 28 */ 29 29 30 /** @addtogroup libdrv 30 31 * @addtogroup usb 31 32 * @{ 32 33 */ 34 33 35 /** @file 34 36 * @brief USB host controller interface definition. -
uspace/srv/loc/loc.c
red6fdc7 r3ce5162 813 813 * On success, answer will contain EOK int retval. 814 814 * On failure, error code will be sent in retval. 815 * 815 816 */ 816 817 static void loc_callback_create(ipc_callid_t iid, ipc_call_t *icall) 817 818 { 818 cb_sess_t *cb_sess; 819 820 cb_sess = calloc(1, sizeof(cb_sess_t)); 819 cb_sess_t *cb_sess = calloc(1, sizeof(cb_sess_t)); 821 820 if (cb_sess == NULL) { 822 821 async_answer_0(iid, ENOMEM); -
uspace/srv/net/net/net.h
red6fdc7 r3ce5162 96 96 97 97 /** Serving network interface driver module index. */ 98 service_id_t sid; /**< Service ID */99 async_sess_t *sess; 98 service_id_t sid; /**< Service ID */ 99 async_sess_t *sess; /**< Driver session. */ 100 100 101 101 module_t *nil; /**< Serving link layer module index. */ -
uspace/srv/net/nil/nildummy/nildummy.c
red6fdc7 r3ce5162 360 360 services_t sender) 361 361 { 362 packet_t *p;363 364 362 fibril_rwlock_read_lock(&nildummy_globals.devices_lock); 365 363 … … 371 369 } 372 370 373 p = packet;371 packet_t *p = packet; 374 372 do { 375 373 nic_send_frame(device->sess, packet_get_data(p),
Note:
See TracChangeset
for help on using the changeset viewer.