Commit 483c84bf authored by Dave Stevenson's avatar Dave Stevenson Committed by Mauro Carvalho Chehab
Browse files

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: 7195aabf ("media: i2c: ov9282: Split registers into common and mode specific")
Signed-off-by: default avatarDave Stevenson <dave.stevenson@raspberrypi.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent f9c77fea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
};