diff options
author | Paul Cercueil <paul@crapouillou.net> | 2019-06-04 16:30:17 +0200 |
---|---|---|
committer | Paul Burton <paul.burton@mips.com> | 2019-06-11 15:46:18 -0700 |
commit | 56a171e5dcb8d7d91c4571a62f28ae2b1e40f95f (patch) | |
tree | 49e2f08806d191f74bf36890e9aeee23211273f7 /drivers/memory | |
parent | fcbc3b104d822e6bad6cde1f33067b525ded6364 (diff) | |
download | linux-56a171e5dcb8d7d91c4571a62f28ae2b1e40f95f.tar.bz2 |
memory: jz4780-nemc: Reduce size of const array
The maximum value found in that array is 15, there's no need to store
these values as uint32_t, a uint8_t is enough.
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Paul Burton <paul.burton@mips.com>
Diffstat (limited to 'drivers/memory')
-rw-r--r-- | drivers/memory/jz4780-nemc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/memory/jz4780-nemc.c b/drivers/memory/jz4780-nemc.c index 594dde78ed20..f3a19b9b76ac 100644 --- a/drivers/memory/jz4780-nemc.c +++ b/drivers/memory/jz4780-nemc.c @@ -166,7 +166,7 @@ static bool jz4780_nemc_configure_bank(struct jz4780_nemc *nemc, * Conversion of tBP and tAW cycle counts to values supported by the * hardware (round up to the next supported value). */ - static const uint32_t convert_tBP_tAW[] = { + static const u8 convert_tBP_tAW[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, /* 11 - 12 -> 12 cycles */ |