Changeset 60404 in vbox for trunk/src/VBox/Devices/Input
- Timestamp:
- Apr 9, 2016 11:45:55 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106490
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/DevPS2.cpp
r58170 r60404 548 548 #else /* IN_RING3 */ 549 549 LogRel(("Reset initiated by keyboard controller\n")); 550 rc = PDMDevHlpVMReset(s->CTX_SUFF(pDevIns) );550 rc = PDMDevHlpVMReset(s->CTX_SUFF(pDevIns), PDMVMRESET_F_KBD); 551 551 #endif /* !IN_RING3 */ 552 552 break; … … 556 556 /* Make OS/2 happy. */ 557 557 /* The 8042 RAM is readable using commands 0x20 thru 0x3f, and writable 558 by 0x60 thru 0x7f. Now days only the firs byte, the mode, is used.558 by 0x60 thru 0x7f. Now days only the first byte, the mode, is used. 559 559 We'll ignore the writes (0x61..7f) and return 0 for all the reads 560 560 just to make some OS/2 debug stuff a bit happier. */ … … 1016 1016 rc = VINF_IOM_R3_IOPORT_WRITE; 1017 1017 # else 1018 rc = PDMDevHlpVMReset(s->CTX_SUFF(pDevIns) );1018 rc = PDMDevHlpVMReset(s->CTX_SUFF(pDevIns), PDMVMRESET_F_KBD); 1019 1019 # endif 1020 1020 }
Note:
See TracChangeset
for help on using the changeset viewer.