Changeset 108170 in vbox
- Timestamp:
- Feb 11, 2025 9:45:11 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167485
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/acpi/acpi-compiler.cpp
r108169 r108170 1528 1528 if (u64DmaChannel > 7) 1529 1529 return RTErrInfoSetF(pThis->pErrInfo, VERR_INVALID_PARAMETER, 1530 "DM channel number %uis out of range [0..7]: %RU64",1530 "DM channel number is out of range [0..7]: %RU64", 1531 1531 u64DmaChannel); 1532 1532 if (bmDmaChannels & RT_BIT(u64DmaChannel)) 1533 return RTErrInfoSetF(pThis->pErrInfo, VERR_INVALID_PARAMETER, "Duplicate DMA channel % uin list", u64DmaChannel);1533 return RTErrInfoSetF(pThis->pErrInfo, VERR_INVALID_PARAMETER, "Duplicate DMA channel %RU64 in list", u64DmaChannel); 1534 1534 1535 1535 bmDmaChannels |= RT_BIT(u64DmaChannel);
Note:
See TracChangeset
for help on using the changeset viewer.