Change UINAME to CName of GUID/PPI/Protocol in all Msa file and change tool to support it.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@863 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qouyang
2006-07-10 10:14:25 +00:00
parent 64efed3759
commit 53b8619385
117 changed files with 1729 additions and 1764 deletions

View File

@@ -1769,7 +1769,7 @@ public class SurfaceAreaQuery {
String[] guidPair = new String[2];
guidPair[0] = entry.getCName();
guidPair[1] = entry.getGuidValue();
guidDeclMap.put(entry.getName(), guidPair);
guidDeclMap.put(entry.getCName(), guidPair);
EdkLog.log(EdkLog.EDK_VERBOSE, entry.getName());
EdkLog.log(EdkLog.EDK_VERBOSE, guidPair[0]);
EdkLog.log(EdkLog.EDK_VERBOSE, guidPair[1]);
@@ -1800,7 +1800,7 @@ public class SurfaceAreaQuery {
protocolPair[0] = entry.getCName();
protocolPair[1] = entry.getGuidValue();
protoclMap.put(entry.getName(), protocolPair);
protoclMap.put(entry.getCName(), protocolPair);
EdkLog.log(EdkLog.EDK_VERBOSE, entry.getName());
EdkLog.log(EdkLog.EDK_VERBOSE, protocolPair[0]);
EdkLog.log(EdkLog.EDK_VERBOSE, protocolPair[1]);
@@ -1835,7 +1835,7 @@ public class SurfaceAreaQuery {
String[] ppiPair = new String[2];
ppiPair[0] = entry.getCName();
ppiPair[1] = entry.getGuidValue();
ppiMap.put(entry.getName(), ppiPair);
ppiMap.put(entry.getCName(), ppiPair);
}
return ppiMap;
}