Commit e761359a authored by Borislav Petkov's avatar Borislav Petkov

amd64_edac: Fix ranges signedness

The dram ranges make sense only as an unsigned type.
Signed-off-by: default avatarBorislav Petkov <borislav.petkov@amd.com>
parent 972ea17a
...@@ -1226,7 +1226,7 @@ static u8 f1x_determine_channel(struct amd64_pvt *pvt, u64 sys_addr, ...@@ -1226,7 +1226,7 @@ static u8 f1x_determine_channel(struct amd64_pvt *pvt, u64 sys_addr,
} }
/* Convert the sys_addr to the normalized DCT address */ /* Convert the sys_addr to the normalized DCT address */
static u64 f1x_get_norm_dct_addr(struct amd64_pvt *pvt, int range, static u64 f1x_get_norm_dct_addr(struct amd64_pvt *pvt, unsigned range,
u64 sys_addr, bool hi_rng, u64 sys_addr, bool hi_rng,
u32 dct_sel_base_addr) u32 dct_sel_base_addr)
{ {
...@@ -1380,7 +1380,7 @@ static u64 f1x_swap_interleaved_region(struct amd64_pvt *pvt, u64 sys_addr) ...@@ -1380,7 +1380,7 @@ static u64 f1x_swap_interleaved_region(struct amd64_pvt *pvt, u64 sys_addr)
} }
/* For a given @dram_range, check if @sys_addr falls within it. */ /* For a given @dram_range, check if @sys_addr falls within it. */
static int f1x_match_to_this_node(struct amd64_pvt *pvt, int range, static int f1x_match_to_this_node(struct amd64_pvt *pvt, unsigned range,
u64 sys_addr, int *nid, int *chan_sel) u64 sys_addr, int *nid, int *chan_sel)
{ {
int cs_found = -EINVAL; int cs_found = -EINVAL;
...@@ -1468,7 +1468,8 @@ static int f1x_match_to_this_node(struct amd64_pvt *pvt, int range, ...@@ -1468,7 +1468,8 @@ static int f1x_match_to_this_node(struct amd64_pvt *pvt, int range,
static int f1x_translate_sysaddr_to_cs(struct amd64_pvt *pvt, u64 sys_addr, static int f1x_translate_sysaddr_to_cs(struct amd64_pvt *pvt, u64 sys_addr,
int *node, int *chan_sel) int *node, int *chan_sel)
{ {
int range, cs_found = -EINVAL; int cs_found = -EINVAL;
unsigned range;
for (range = 0; range < DRAM_RANGES; range++) { for (range = 0; range < DRAM_RANGES; range++) {
...@@ -1941,7 +1942,7 @@ static void read_mc_regs(struct amd64_pvt *pvt) ...@@ -1941,7 +1942,7 @@ static void read_mc_regs(struct amd64_pvt *pvt)
struct cpuinfo_x86 *c = &boot_cpu_data; struct cpuinfo_x86 *c = &boot_cpu_data;
u64 msr_val; u64 msr_val;
u32 tmp; u32 tmp;
int range; unsigned range;
/* /*
* Retrieve TOP_MEM and TOP_MEM2; no masking off of reserved bits since * Retrieve TOP_MEM and TOP_MEM2; no masking off of reserved bits since
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment