Changeset 0b4a67a in mainline for uspace/srv/hw/netif/dp8390/dp8390.c
- Timestamp:
- 2010-11-20T15:33:02Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7e1f9b7
- Parents:
- a9c6b966
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/netif/dp8390/dp8390.c
ra9c6b966 r0b4a67a 432 432 dep->de_write_iovec.iod_iovec[0].iov_size = size; 433 433 dep->de_write_iovec.iod_iovec_s = 1; 434 dep->de_write_iovec.iod_iovec_addr = NULL;434 dep->de_write_iovec.iod_iovec_addr = (uintptr_t) NULL; 435 435 436 436 if (size < ETH_MIN_PACK_SIZE || size > ETH_MAX_PACK_SIZE_TAGGED) … … 1015 1015 dep->de_read_iovec.iod_iovec[0].iov_size = length; 1016 1016 dep->de_read_iovec.iod_iovec_s = 1; 1017 dep->de_read_iovec.iod_iovec_addr = NULL;1017 dep->de_read_iovec.iod_iovec_addr = (uintptr_t) NULL; 1018 1018 1019 1019 last = page + (length - 1) / DP_PAGESIZE;
Note:
See TracChangeset
for help on using the changeset viewer.