mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
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>
This commit is contained in:
parent
94b3a02c31
commit
1a927ad64b
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user