Changeset 33435 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Oct 25, 2010 4:08:30 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchIntelHDA.cpp
r33419 r33435 1379 1379 Log(("hda: access to registers except GCTL is blocked while reset\n")); 1380 1380 } 1381 Assert( index != -1 1382 && cb <= 4); 1381 if ( index != -1 1382 && cb <= 4) 1383 { 1384 LogRel(("hda: Invalid read access @0x%x(of bytes:%d)\n", u32Offset, cb)); 1385 } 1383 1386 if (index != -1) 1384 1387 { … … 1427 1430 Log(("hda: access to registers except GCTL is blocked while reset\n")); 1428 1431 } 1429 Assert( index != -1 1430 && cb <= 4); 1432 if ( index != -1 1433 && cb <= 4) 1434 { 1435 LogRel(("hda: Invalid write access @0x%x(of bytes:%d)\n", u32Offset, cb)); 1436 } 1431 1437 if (index != -1) 1432 1438 {
Note:
See TracChangeset
for help on using the changeset viewer.