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