summaryrefslogtreecommitdiffstats
path: root/ArmPlatformPkg/Scripts/Ds5
diff options
context:
space:
mode:
authorLeif Lindholm <leif.lindholm@linaro.org>2014-02-12 15:30:34 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2014-02-12 15:30:34 +0000
commite6f3ed43400bc9d02ff3e2728579cc9f35f71405 (patch)
treee9e4bbb10339bf1633489b7f00c789bb4924e260 /ArmPlatformPkg/Scripts/Ds5
parent9401d6f4b989d977f8b0aa4946168a92b748aead (diff)
downloadedk2-e6f3ed43400bc9d02ff3e2728579cc9f35f71405.tar.gz
edk2-e6f3ed43400bc9d02ff3e2728579cc9f35f71405.tar.bz2
edk2-e6f3ed43400bc9d02ff3e2728579cc9f35f71405.zip
ARM Packages: CRLF fixup
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org> Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15241 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg/Scripts/Ds5')
-rw-r--r--ArmPlatformPkg/Scripts/Ds5/system_table.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ArmPlatformPkg/Scripts/Ds5/system_table.py b/ArmPlatformPkg/Scripts/Ds5/system_table.py
index ff1db2f6e4..dbb827e96d 100644
--- a/ArmPlatformPkg/Scripts/Ds5/system_table.py
+++ b/ArmPlatformPkg/Scripts/Ds5/system_table.py
@@ -95,7 +95,7 @@ class DebugInfoTable:
if edk2_debugger.is_aarch64(self.ec):
section = firmware_volume.EfiSectionPE64(self.ec, debug_info[0])
else:
- section = firmware_volume.EfiSectionPE32(self.ec, debug_info[0])
+ section = firmware_volume.EfiSectionPE32(self.ec, debug_info[0])
try:
edk2_debugger.load_symbol_from_file(self.ec, section.get_debug_filepath(), section.get_debug_elfbase(), verbose)
@@ -151,13 +151,13 @@ class SystemTable:
def get_configuration_table(self, conf_table_guid):
if edk2_debugger.is_aarch64(self.ec):
# Number of configuration Table entry
- conf_table_entry_count = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x68)
+ conf_table_entry_count = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x68)
# Get location of the Configuration Table entries
conf_table_offset = self.ec.getMemoryService().readMemory64(self.system_table_base + 0x70)
else:
# Number of configuration Table entry
- conf_table_entry_count = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x40)
+ conf_table_entry_count = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x40)
# Get location of the Configuration Table entries
conf_table_offset = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x44)