mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 16:30:53 +00:00
[media] SR030PC30: Avoid use of uninitialized variables
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
c29bc4d77d
commit
11e0f1a897
@ -326,7 +326,7 @@ static inline struct sr030pc30_info *to_sr030pc30(struct v4l2_subdev *sd)
|
||||
static inline int set_i2c_page(struct sr030pc30_info *info,
|
||||
struct i2c_client *client, unsigned int reg)
|
||||
{
|
||||
int ret;
|
||||
int ret = 0;
|
||||
u32 page = reg >> 8 & 0xFF;
|
||||
|
||||
if (info->i2c_reg_page != page && (reg & 0xFF) != 0x03) {
|
||||
|
Loading…
Reference in New Issue
Block a user