Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/nic/src/nic_driver.c

    rfd6bd6d r49bd793b  
    13291329}
    13301330
     1331// FIXME: Later
     1332#if 0
     1333
    13311334/** Lock packet for DMA usage
    13321335 *
     
    13371340{
    13381341        void *phys_addr;
    1339         int rc = dmamem_lock(packet, &phys_addr, 1);
     1342        size_t locked;
     1343        int rc = dma_lock(packet, &phys_addr, 1, &locked);
    13401344        if (rc != EOK)
    13411345                return NULL;
    13421346       
     1347        assert(locked == 1);
    13431348        return phys_addr;
    13441349}
     
    13481353 * @param packet
    13491354 */
    1350 int nic_dma_unlock_packet(packet_t *packet)
    1351 {
    1352         return dmamem_unlock(packet, 1);
    1353 }
     1355void nic_dma_unlock_packet(packet_t *packet)
     1356{
     1357        size_t unlocked;
     1358        int rc = dma_unlock(packet, 1, &unlocked);
     1359        if (rc != EOK)
     1360                return;
     1361       
     1362        assert(unlocked == 1);
     1363}
     1364
     1365#endif
    13541366
    13551367/** @}
Note: See TracChangeset for help on using the changeset viewer.