From 2e927911924762a30f45dece9ce440b8620119c7 Mon Sep 17 00:00:00 2001 From: Maisam Arif Date: Fri, 23 Aug 2024 19:22:05 -0500 Subject: [PATCH] Removed extra print statement Signed-off-by: Maisam Arif Change-Id: I0043567f4cc17d69860b0c77f42fa77fd41e354d [ROCm/amdsmi commit: 7ac0a494708609686b1a846d294a755375d0d878] --- projects/amdsmi/py-interface/amdsmi_interface.py | 1 - 1 file changed, 1 deletion(-) diff --git a/projects/amdsmi/py-interface/amdsmi_interface.py b/projects/amdsmi/py-interface/amdsmi_interface.py index a15ba8e68f..db00f18226 100644 --- a/projects/amdsmi/py-interface/amdsmi_interface.py +++ b/projects/amdsmi/py-interface/amdsmi_interface.py @@ -2212,7 +2212,6 @@ def amdsmi_get_fw_info( elif fw_name in dec_format_fw: # Convert the fw_version from a int to a hex string padded leading 0s fw_version_string = hex(fw_version)[2:].zfill(8) - print(fw_version_string) # Convert every two hex digits to decimal and join them with a dot dec_version_string = ''