Changeset 132ab5d1 in mainline for uspace/drv/nic/ne2k/dp8390.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/ne2k/dp8390.c
r8bfb163 r132ab5d1 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.