Changes in uspace/drv/nic/ne2k/dp8390.c [f300523:582a0b8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/ne2k/dp8390.c
rf300523 r582a0b8 55 55 56 56 #include <assert.h> 57 #include <async.h>58 57 #include <byteorder.h> 59 58 #include <errno.h> 60 59 #include <stdio.h> 61 60 #include <ddi.h> 61 #include <thread.h> 62 62 #include "dp8390.h" 63 63 … … 172 172 /* Reset the ethernet card */ 173 173 uint8_t val = pio_read_8(ne2k->port + NE2K_RESET); 174 async_usleep(2000);174 thread_usleep(2000); 175 175 pio_write_8(ne2k->port + NE2K_RESET, val); 176 async_usleep(2000);176 thread_usleep(2000); 177 177 178 178 /* Reset the DP8390 */
Note:
See TracChangeset
for help on using the changeset viewer.