X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=BaseTools%2FSource%2FPython%2FBPDG%2FGenVpd.py;h=049c082f40e2c74c7236205be6e42269fc544136;hp=887a0c4a1f5a3a39a3a5b9ccc6dd2ef48c953a23;hb=2d53d54a5bf5f9ba9379e465f49ac9cdc55035de;hpb=d031fc07eb83c9d13bff3ebac25da458d5a47917 diff --git a/BaseTools/Source/Python/BPDG/GenVpd.py b/BaseTools/Source/Python/BPDG/GenVpd.py index 887a0c4a1f..049c082f40 100644 --- a/BaseTools/Source/Python/BPDG/GenVpd.py +++ b/BaseTools/Source/Python/BPDG/GenVpd.py @@ -312,7 +312,7 @@ class GenVPD : ## # Parser the input file which is generated by the build tool. Convert the value of each pcd's - # from string to it's real format. Also remove the useless line in the input file. + # from string to its real format. Also remove the useless line in the input file. # def ParserInputFile (self): count = 0 @@ -483,7 +483,7 @@ class GenVPD : self.PcdFixedOffsetSizeList.sort(key=lambda x: x.PcdBinOffset) # - # Sort the un-fixed pcd's offset by it's size. + # Sort the un-fixed pcd's offset by its size. # self.PcdUnknownOffsetList.sort(key=lambda x: x.PcdBinSize) @@ -605,7 +605,7 @@ class GenVPD : # Usually it will not enter into this thunk, if so, means it overlapped. else : EdkLogger.error("BPDG", BuildToolError.ATTRIBUTE_NOT_AVAILABLE, - "The offset value definition has overlapped at pcd: %s, it's offset is: %s, in file: %s line: %s" % \ + "The offset value definition has overlapped at pcd: %s, its offset is: %s, in file: %s line: %s" % \ (eachFixedPcd.PcdCName, eachFixedPcd.PcdOffset, eachFixedPcd.InputFileName, eachFixedPcd.Lineno), None) FixOffsetSizeListCount += 1