[NFC] Correct comments and line spacing

- Correct spelling mistakes or working in comments.
- Adding missing line separators.
- Add missing comments for namespace closing brace.

Change-Id: If09cdd38aa088b0f68f750dfdef81351eb8c4935
This commit is contained in:
Tony Tye
2021-01-10 00:07:13 +00:00
parent ed6d54b416
commit eb16dc5ef3
13 changed files with 28 additions and 26 deletions
+2 -3
View File
@@ -237,7 +237,6 @@ bool NullDevice::init() {
return true;
}
bool NullDevice::create(uint id, Pal::GfxIpLevel ipLevel) {
// Update HW info for the device
if ((GPU_ENABLE_PAL == 1) && (ipLevel == Pal::GfxIpLevel::_None)) {
@@ -883,8 +882,8 @@ bool Device::create(Pal::IDevice* device) {
properties().revision :
static_cast<Pal::AsicRevision>(PAL_FORCE_ASIC_REVISION);
// XNACK flag should be set for PageMigration | IOMMUv2 Support
// Note: Navi2x should have a fix in HW
// XNACK flag should be set for PageMigration or IOMMUv2 support.
// Note: Navi2x should have a fix in HW.
bool isXNACKSupported = (ipLevel_ <= Pal::GfxIpLevel::GfxIp10_1) &&
(static_cast<uint>(properties_.gpuMemoryProperties.flags.pageMigrationEnabled ||
properties_.gpuMemoryProperties.flags.iommuv2Support));