Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/nic/ne2k/dp8390.c

    rf300523 r582a0b8  
    5555
    5656#include <assert.h>
    57 #include <async.h>
    5857#include <byteorder.h>
    5958#include <errno.h>
    6059#include <stdio.h>
    6160#include <ddi.h>
     61#include <thread.h>
    6262#include "dp8390.h"
    6363
     
    172172        /* Reset the ethernet card */
    173173        uint8_t val = pio_read_8(ne2k->port + NE2K_RESET);
    174         async_usleep(2000);
     174        thread_usleep(2000);
    175175        pio_write_8(ne2k->port + NE2K_RESET, val);
    176         async_usleep(2000);
     176        thread_usleep(2000);
    177177       
    178178        /* Reset the DP8390 */
Note: See TracChangeset for help on using the changeset viewer.