]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
memory: jz4780-nemc: Reduce size of const array
authorPaul Cercueil <paul@crapouillou.net>
Tue, 4 Jun 2019 14:30:17 +0000 (16:30 +0200)
committerPaul Burton <paul.burton@mips.com>
Tue, 11 Jun 2019 22:46:18 +0000 (15:46 -0700)
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>
drivers/memory/jz4780-nemc.c

index 594dde78ed2067ab83e6633811aad7178efadca8..f3a19b9b76ac18566166ea398ba2e95834029c3a 100644 (file)
@@ -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 */