diff options
author | qouyang <qouyang@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-10 10:14:25 +0000 |
---|---|---|
committer | qouyang <qouyang@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-10 10:14:25 +0000 |
commit | 53b8619385c695ed1596d40635544210878e8db4 (patch) | |
tree | e309419dedd6f5159ac80a91e771325866651b06 /Tools | |
parent | 64efed3759ffbaecde93e5108221452996c09229 (diff) | |
download | edk2-platforms-53b8619385c695ed1596d40635544210878e8db4.tar.xz |
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
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/Source/GenBuild/org/tianocore/build/global/SurfaceAreaQuery.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/Source/GenBuild/org/tianocore/build/global/SurfaceAreaQuery.java b/Tools/Source/GenBuild/org/tianocore/build/global/SurfaceAreaQuery.java index 149b30dd17..37c60643e7 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/global/SurfaceAreaQuery.java +++ b/Tools/Source/GenBuild/org/tianocore/build/global/SurfaceAreaQuery.java @@ -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;
}
|