Changeset 11168 in vbox for trunk/src/VBox
- Timestamp:
- Aug 6, 2008 12:29:24 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 34159
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevSB16.cpp
r11167 r11168 282 282 static DECLCALLBACK(void) sb16Timer(PPDMDEVINS pDevIns, PTMTIMER pTimer) 283 283 { 284 SB16State *s = PDMINS 2DATA(pDevIns, SB16State *);284 SB16State *s = PDMINS_2_DATA(pDevIns, SB16State *); 285 285 s->can_write = 1; 286 286 PDMDevHlpISASetIrq(s->pDevIns, s->irq, 1); … … 1483 1483 static DECLCALLBACK(int) SaveExec (PPDMDEVINS pDevIns, PSSMHANDLE pSSMHandle) 1484 1484 { 1485 SB16State *s = PDMINS 2DATA (pDevIns, SB16State *);1485 SB16State *s = PDMINS_2_DATA (pDevIns, SB16State *); 1486 1486 QEMUFile *f = pSSMHandle; 1487 1487 #endif … … 1552 1552 uint32_t u32Version) 1553 1553 { 1554 SB16State *s = PDMINS 2DATA (pDevIns, SB16State *);1554 SB16State *s = PDMINS_2_DATA (pDevIns, SB16State *); 1555 1555 QEMUFile *f = pSSMHandle; 1556 1556 … … 1727 1727 static DECLCALLBACK(int) sb16Construct (PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfgHandle) 1728 1728 { 1729 SB16State *s = PDMINS 2DATA(pDevIns, SB16State *);1729 SB16State *s = PDMINS_2_DATA(pDevIns, SB16State *); 1730 1730 int rc; 1731 1731
Note:
See TracChangeset
for help on using the changeset viewer.