Sync up HSA_ENGINE_ID type with Windows/Perforce

HSA_ENGINE_ID in Perforce added ui32 to the typedef while in Git it doesn't.
This causes conflicts to RT applications. Decision being made is to change Git
to match Perforce.

Change-Id: I7e9c6437b023bb23ec9578737f8534e9453589b9
This commit is contained in:
Amber Lin
2015-09-24 00:00:39 -04:00
parent 4b768872c0
commit 082f8314c4
2 changed files with 9 additions and 9 deletions
+8 -8
View File
@@ -375,20 +375,20 @@ topology_sysfs_get_node_props(uint32_t node_id, HsaNodeProperties *props, uint32
}
// get_cpu_stepping(&stepping);
props->EngineId.uCode = fw_version & 0x3ff;
props->EngineId.Major = 0;
props->EngineId.Minor = 0;
props->EngineId.Stepping = 0;
props->EngineId.ui32.uCode = fw_version & 0x3ff;
props->EngineId.ui32.Major = 0;
props->EngineId.ui32.Minor = 0;
props->EngineId.ui32.Stepping = 0;
table_size = sizeof(gfxip_lookup_table)/sizeof(struct hsa_gfxip_table);
for (i=0; i<table_size; i++) {
if(gfxip_lookup_table[i].device_id == props->DeviceId) {
props->EngineId.Major = gfxip_lookup_table[i].major & 0x3f;
props->EngineId.Minor = gfxip_lookup_table[i].minor;
props->EngineId.Stepping = gfxip_lookup_table[i].stepping;
props->EngineId.ui32.Major = gfxip_lookup_table[i].major & 0x3f;
props->EngineId.ui32.Minor = gfxip_lookup_table[i].minor;
props->EngineId.ui32.Stepping = gfxip_lookup_table[i].stepping;
break;
}
}
assert(props->EngineId.Major);
assert(props->EngineId.ui32.Major);
//TODO: error handler when Device ID lookup fails
err2: