mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-01 02:33:57 +00:00
chemical: bme680: Convert to static the const lookup table
By converting it to static, we ensure that this will be placed by the compiler in the read-only area. Signed-off-by: Vasileios Amoiridis <vassilisamir@gmail.com> Link: https://patch.msgid.link/20240725231818.615530-1-vassilisamir@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
8cfb75d78a
commit
cc18b7fe70
@ -438,7 +438,7 @@ static u32 bme680_compensate_gas(struct bme680_data *data, u16 gas_res_adc,
|
||||
u32 calc_gas_res;
|
||||
|
||||
/* Look up table for the possible gas range values */
|
||||
const u32 lookupTable[16] = {2147483647u, 2147483647u,
|
||||
static const u32 lookupTable[16] = {2147483647u, 2147483647u,
|
||||
2147483647u, 2147483647u, 2147483647u,
|
||||
2126008810u, 2147483647u, 2130303777u,
|
||||
2147483647u, 2147483647u, 2143188679u,
|
||||
|
Loading…
Reference in New Issue
Block a user