Changeset 55075 in vbox for trunk/src/VBox/Devices/Input/PS2K.cpp
- Timestamp:
- Apr 1, 2015 2:06:36 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/PS2K.cpp
r55073 r55075 618 618 * @param u8State Bitfield which reflects LEDs state. 619 619 */ 620 static void PS2KNotifyLedsState(PPS2K pThis, uint8_t u8State)620 static void ps2kNotifyLedsState(PPS2K pThis, uint8_t u8State) 621 621 { 622 622 … … 720 720 #else 721 721 { 722 PS2KNotifyLedsState(pThis, cmd);722 ps2kNotifyLedsState(pThis, cmd); 723 723 pThis->fNumLockOn = !!(cmd & 0x02); /* Sync internal Num Lock state. */ 724 724 ps2kInsertQueue((GeneriQ *)&pThis->cmdQ, KRSP_ACK); … … 1352 1352 ps2kReleaseKeys(pThis); 1353 1353 #ifdef IN_RING3 1354 PS2KNotifyLedsState(pThis, pThis->u8LEDs);1354 ps2kNotifyLedsState(pThis, pThis->u8LEDs); 1355 1355 #endif 1356 1356 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.