diff options
author | Colin Ian King <[email protected]> | 2018-10-04 10:15:35 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2018-10-09 08:02:15 -0400 |
commit | 9a265b30646f33d0e74c3de7a8d6b011e4e0a39b (patch) | |
tree | 661a44554dea6bb87000dfc58a3de6d40c7a95a6 | |
parent | db6df013c3fbf3a87e2fbf675bd900b5e1167f00 (diff) |
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 <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/media/pci/cx23885/cx23885-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/cx23885/cx23885-i2c.c b/drivers/media/pci/cx23885/cx23885-i2c.c index dd67135d2bb6..d0df3dfff694 100644 --- a/drivers/media/pci/cx23885/cx23885-i2c.c +++ b/drivers/media/pci/cx23885/cx23885-i2c.c @@ -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 }; |