rocm_smi.py: Fix order of CE and UE reporting

We append CE then UE, but in the table right after, it goes UE then CE.
Fix the order of the table, and add capitals for consistency

Change-Id: I208f37685508ab1e2ff83d3456620bbbf3a16268


[ROCm/amdsmi commit: 248c6f79f4]
Этот коммит содержится в:
kent.russell@amd.com
2022-12-08 12:27:00 -05:00
коммит произвёл Kent Russell
родитель db11ee60a0
Коммит 3fa81a26e4
+1 -1
Просмотреть файл
@@ -2146,7 +2146,7 @@ def showRasInfo(deviceList, rasType):
row.append(ec.correctable_err)
row.append(ec.uncorrectable_err)
data.append(row)
printTableLog([' Block', ' Status ', 'uncorrectable err', 'correctable err'], data, device,
printTableLog([' Block', ' Status ', 'Correctable Error', 'Uncorrectable Error'], data, device,
'RAS INFO')
# TODO: Use dynamic spacing for column widths
printLogSpacer(None, '_')