aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86/intel/pmc/core.c
diff options
context:
space:
mode:
authorXi Pardee <xi.pardee@linux.intel.com>2025-04-09 12:10:46 -0700
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>2025-04-11 15:26:06 +0300
commit052fabddeaa70bdb256cbdae152291bd8a1bee0c (patch)
treea6050758f656785fb13d0771aedb02b0b9bff788 /drivers/platform/x86/intel/pmc/core.c
parentplatform/x86:intel/pmc: Move PMC devid to core.h (diff)
downloadlinux-052fabddeaa70bdb256cbdae152291bd8a1bee0c.tar.gz
linux-052fabddeaa70bdb256cbdae152291bd8a1bee0c.zip
platform/x86:intel/pmc: Convert index variables to be unsigned
Convert the index variables type to be unsigned to avoid confusion and error. Signed-off-by: Xi Pardee <xi.pardee@linux.intel.com> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Link: https://lore.kernel.org/r/20250409191056.15434-5-xi.pardee@linux.intel.com Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/intel/pmc/core.c')
-rw-r--r--drivers/platform/x86/intel/pmc/core.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/platform/x86/intel/pmc/core.c b/drivers/platform/x86/intel/pmc/core.c
index a42dc62d70da..a53a7677122c 100644
--- a/drivers/platform/x86/intel/pmc/core.c
+++ b/drivers/platform/x86/intel/pmc/core.c
@@ -1457,7 +1457,8 @@ unregister_ep:
static int pmc_core_ssram_get_lpm_reqs(struct pmc_dev *pmcdev)
{
- int ret, i;
+ unsigned int i;
+ int ret;
if (!pmcdev->ssram_pcidev)
return -ENODEV;
@@ -1484,7 +1485,7 @@ const struct pmc_reg_map *pmc_core_find_regmap(struct pmc_info *list, u16 devid)
}
int pmc_core_pmc_add(struct pmc_dev *pmcdev, u64 pwrm_base,
- const struct pmc_reg_map *reg_map, int pmc_index)
+ const struct pmc_reg_map *reg_map, unsigned int pmc_index)
{
struct pmc *pmc = pmcdev->pmcs[pmc_index];