Fixed firmware version from int to hex

Signed-off-by: Maisam Arif <maisarif@amd.com>
Change-Id: Ie09c5b14f108f1eb5c3fd60fe37fb731173a9478
This commit is contained in:
Maisam Arif
2023-10-24 20:08:48 -05:00
committed by Maisam Arif
vanhempi 336ef57ed8
commit 6d59e9b71d
3 muutettua tiedostoa jossa 8 lisäystä ja 6 poistoa
+1 -1
Näytä tiedosto
@@ -576,7 +576,7 @@ try:
firmware_list = amdsmi_get_fw_info(device)['fw_list']
for firmware_block in firmware_list:
print(firmware_block['fw_name'])
print(firmware_block['fw_version'])
print(firmware_block['fw_version']) # String formated hex version ie: 21.00.00.AC
except AmdSmiException as e:
print(e)
```