media: cx23885: make const array addr_list static
The const array addr_list can be made static, saves populating it on the stack and will make it read-only. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
db6df013c3
commit
9a265b3064
|
@ -340,7 +340,7 @@ int cx23885_i2c_register(struct cx23885_i2c *bus)
|
|||
/* Instantiate the IR receiver device, if present */
|
||||
if (0 == bus->i2c_rc) {
|
||||
struct i2c_board_info info;
|
||||
const unsigned short addr_list[] = {
|
||||
static const unsigned short addr_list[] = {
|
||||
0x6b, I2C_CLIENT_END
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue