summaryrefslogtreecommitdiffstats
path: root/drivers/memory/jz4780-nemc.c
diff options
context:
space:
mode:
authorPaul Cercueil <paul@crapouillou.net>2019-06-04 16:30:17 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-06-21 16:08:19 +0200
commit1a927ad64bcf2b0e11559e3761360147d2ddbde8 (patch)
tree72dfd4a01cc7398454c98c8db6139812c9f06660 /drivers/memory/jz4780-nemc.c
parent94b3a02c31eebbaa647f1f5252052e4ccbd0b938 (diff)
downloadlinux-1a927ad64bcf2b0e11559e3761360147d2ddbde8.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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/memory/jz4780-nemc.c')
-rw-r--r--drivers/memory/jz4780-nemc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/memory/jz4780-nemc.c b/drivers/memory/jz4780-nemc.c
index bcf06adefc96..66b8b43eaeff 100644
--- a/drivers/memory/jz4780-nemc.c
+++ b/drivers/memory/jz4780-nemc.c
@@ -161,7 +161,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 */