dect
/
linux-2.6
Archived
13
0
Fork 0

[media] SR030PC30: Avoid use of uninitialized variables

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Sylwester Nawrocki 2010-10-18 06:51:35 -03:00 committed by Mauro Carvalho Chehab
parent c29bc4d77d
commit 11e0f1a897
1 changed files with 1 additions and 1 deletions

View File

@ -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) {