tools/power turbostat: Fix RAPL_GFX_ALL typo

[ Upstream commit b4a734d3839971f590ce8c435ea5b0d3762b37a8 ]

Fix typo in the currently unused RAPL_GFX_ALL macro definition.

Signed-off-by: Kaushlendra Kumar <kaushlendra.kumar@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
[ Backport from v6.16 ]
Link: https://github.com/deepin-community/kernel/pull/73
Signed-off-by: WangYuli <wangyuli@uniontech.com>
This commit is contained in:
Kaushlendra Kumar 2025-05-23 13:36:59 +05:30 committed by Wang huai
parent a8a62a8091
commit 19e9bc6bcd
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ enum rapl_msrs {
#define RAPL_PKG_ALL (RAPL_PKG | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO)
#define RAPL_DRAM_ALL (RAPL_DRAM | RAPL_DRAM_PERF_STATUS | RAPL_DRAM_POWER_INFO)
#define RAPL_CORE_ALL (RAPL_CORE | RAPL_CORE_POLICY)
#define RAPL_GFX_ALL (RAPL_GFX | RAPL_GFX_POLIGY)
#define RAPL_GFX_ALL (RAPL_GFX | RAPL_GFX_POLICY)
#define RAPL_AMD_F17H (RAPL_AMD_PWR_UNIT | RAPL_AMD_CORE_ENERGY_STAT | RAPL_AMD_PKG_ENERGY_STAT)