提交 c31d34fe 编写于 作者: N Niklas Söderlund 提交者: Mauro Carvalho Chehab

i7core_edac: fix erroneous size of static array

Remove size from lookup arrays and mark them as const.
Reviewed-by: NJesper Juhl <jj@chaosbits.net>
Signed-off-by: NNiklas Söderlund <niso@kth.se>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 da14d93d
...@@ -420,21 +420,21 @@ static inline int numdimms(u32 dimms) ...@@ -420,21 +420,21 @@ static inline int numdimms(u32 dimms)
static inline int numrank(u32 rank) static inline int numrank(u32 rank)
{ {
static int ranks[4] = { 1, 2, 4, -EINVAL }; static const int ranks[] = { 1, 2, 4, -EINVAL };
return ranks[rank & 0x3]; return ranks[rank & 0x3];
} }
static inline int numbank(u32 bank) static inline int numbank(u32 bank)
{ {
static int banks[4] = { 4, 8, 16, -EINVAL }; static const int banks[] = { 4, 8, 16, -EINVAL };
return banks[bank & 0x3]; return banks[bank & 0x3];
} }
static inline int numrow(u32 row) static inline int numrow(u32 row)
{ {
static int rows[8] = { static const int rows[] = {
1 << 12, 1 << 13, 1 << 14, 1 << 15, 1 << 12, 1 << 13, 1 << 14, 1 << 15,
1 << 16, -EINVAL, -EINVAL, -EINVAL, 1 << 16, -EINVAL, -EINVAL, -EINVAL,
}; };
...@@ -444,7 +444,7 @@ static inline int numrow(u32 row) ...@@ -444,7 +444,7 @@ static inline int numrow(u32 row)
static inline int numcol(u32 col) static inline int numcol(u32 col)
{ {
static int cols[8] = { static const int cols[] = {
1 << 10, 1 << 11, 1 << 12, -EINVAL, 1 << 10, 1 << 11, 1 << 12, -EINVAL,
}; };
return cols[col & 0x3]; return cols[col & 0x3];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册