Changeset 56703 in vbox
- Timestamp:
- Jun 30, 2015 3:12:25 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r56292 r56703 2630 2630 { /* RST */ 2631 2631 #ifndef IN_RING3 2632 return VINF_IOM_R3_ IOPORT_WRITE;2632 return VINF_IOM_R3_MMIO_WRITE; 2633 2633 #else 2634 2634 e1kHardReset(pThis); … … 3030 3030 /* Promiscuity has changed, pass the knowledge on. */ 3031 3031 #ifndef IN_RING3 3032 return VINF_IOM_R3_ IOPORT_WRITE;3032 return VINF_IOM_R3_MMIO_WRITE; 3033 3033 #else 3034 3034 if (pThis->pDrvR3) … … 5230 5230 rc = VERR_NET_INCOMPLETE_TX_PACKET; 5231 5231 # else /* !IN_RING3 */ 5232 rc = VINF_IOM_R3_ IOPORT_WRITE;5232 rc = VINF_IOM_R3_MMIO_WRITE; 5233 5233 # endif /* !IN_RING3 */ 5234 5234 goto out; … … 5386 5386 rc = VINF_SUCCESS; 5387 5387 else if (rc == VERR_SEM_BUSY) 5388 rc = VINF_IOM_R3_ IOPORT_WRITE;5388 rc = VINF_IOM_R3_MMIO_WRITE; 5389 5389 AssertRC(rc); 5390 5390 }
Note:
See TracChangeset
for help on using the changeset viewer.