From 4a7e2d8454b2d2b42148fdebc133c11ac347f8e3 Mon Sep 17 00:00:00 2001 From: Eddie Fiorentine Date: Tue, 20 Jan 2026 15:20:07 -0500 Subject: [PATCH] fix: amdsmi_power_info_t->power_limit is really micro watts --- include/amd_smi/amdsmi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/amd_smi/amdsmi.h b/include/amd_smi/amdsmi.h index da11c1ad9..bbf030b38 100644 --- a/include/amd_smi/amdsmi.h +++ b/include/amd_smi/amdsmi.h @@ -1117,7 +1117,7 @@ typedef struct { uint64_t gfx_voltage; //!< GFX voltage measurement in mV uint64_t soc_voltage; //!< SOC voltage measurement in mV uint64_t mem_voltage; //!< MEM voltage measurement in mV - uint32_t power_limit; //!< The power limit in W + uint32_t power_limit; //!< The power limit in mu-W uint64_t reserved[18]; } amdsmi_power_info_t;