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:
Colin Ian King 2018-10-04 10:15:35 -04:00 committed by Mauro Carvalho Chehab
parent db6df013c3
commit 9a265b3064
1 changed files with 1 additions and 1 deletions

View File

@ -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
};