diff options
author | Dave Stevenson | 2022-11-28 16:22:48 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab | 2022-12-06 07:24:47 +0000 |
commit | 483c84bf50e7ec0fc2887f35b76c8cc57ba81574 (patch) | |
tree | be19673094a123713f654f4addbcb81aef8d4862 /drivers/media | |
parent | f9c77fea1270d34dda13aeaa4488bab710097bb7 (diff) |
media: i2c: ov9282: Make common_regs_list static
common_regs_list is only used within this file, so should
be static. Make it so.
Fixes: 7195aabf8f8b ("media: i2c: ov9282: Split registers into common and mode specific")
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/i2c/ov9282.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/ov9282.c b/drivers/media/i2c/ov9282.c index 7b1270df4263..3749501c3104 100644 --- a/drivers/media/i2c/ov9282.c +++ b/drivers/media/i2c/ov9282.c @@ -268,7 +268,7 @@ static const struct ov9282_reg common_regs[] = { {0x5a08, 0x84}, }; -struct ov9282_reg_list common_regs_list = { +static struct ov9282_reg_list common_regs_list = { .num_of_regs = ARRAY_SIZE(common_regs), .regs = common_regs, }; |