mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:46:16 +00:00
mtd: parsers: bcm47xxpart: make read-only array possible_nvram_sizes static const
Don't populate the read-only array possible_nvram_sizes on the stack at run time, instead make it static const. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20240822164632.638171-1-colin.i.king@gmail.com
This commit is contained in:
parent
ea265e483e
commit
e334c01df2
@ -95,7 +95,7 @@ static int bcm47xxpart_parse(struct mtd_info *master,
|
||||
uint32_t blocksize = master->erasesize;
|
||||
int trx_parts[2]; /* Array with indexes of TRX partitions */
|
||||
int trx_num = 0; /* Number of found TRX partitions */
|
||||
int possible_nvram_sizes[] = { 0x8000, 0xF000, 0x10000, };
|
||||
static const int possible_nvram_sizes[] = { 0x8000, 0xF000, 0x10000, };
|
||||
int err;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user