diff options
Diffstat (limited to 'src/VBox/Devices/PC/DevLPC.cpp')
-rw-r--r-- | src/VBox/Devices/PC/DevLPC.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VBox/Devices/PC/DevLPC.cpp b/src/VBox/Devices/PC/DevLPC.cpp index 00a2ecc2e..6bcee81f1 100644 --- a/src/VBox/Devices/PC/DevLPC.cpp +++ b/src/VBox/Devices/PC/DevLPC.cpp @@ -1,4 +1,4 @@ -/* $Id: DevLPC.cpp $ */ +/* $Id: DevLPC.cpp 37636 2011-06-24 14:59:59Z vboxsync $ */ /** @file * DevLPC - LPC device emulation */ @@ -160,7 +160,7 @@ PDMBOTHCBDECL(int) lpcMMIORead(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhy * @param cb Number of bytes to write. * @thread EMT */ -PDMBOTHCBDECL(int) lpcMMIOWrite(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb) +PDMBOTHCBDECL(int) lpcMMIOWrite(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void const *pv, unsigned cb) { LPCState *s = PDMINS_2_DATA(pDevIns, LPCState*); |