Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357380
b: refs/heads/master
c: f3e8e4f
h: refs/heads/master
v: v3
  • Loading branch information
Lad, Prabhakar authored and Mauro Carvalho Chehab committed Feb 5, 2013
1 parent 6c9e82a commit 9cc117e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d41d81983a9eb44626ab3ddd1f0184e4815f5bcc
refs/heads/master: f3e8e4f1c039b13644f06c74cc5507bebc41da69
18 changes: 6 additions & 12 deletions trunk/drivers/media/i2c/tvp7002.c
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ static int tvp7002_probe(struct i2c_client *c, const struct i2c_device_id *id)
return -ENODEV;
}

device = kzalloc(sizeof(struct tvp7002), GFP_KERNEL);
device = devm_kzalloc(&c->dev, sizeof(struct tvp7002), GFP_KERNEL);

if (!device)
return -ENOMEM;
Expand All @@ -1052,7 +1052,7 @@ static int tvp7002_probe(struct i2c_client *c, const struct i2c_device_id *id)

error = tvp7002_read(sd, TVP7002_CHIP_REV, &revision);
if (error < 0)
goto found_error;
return error;

/* Get revision number */
v4l2_info(sd, "Rev. %02x detected.\n", revision);
Expand All @@ -1063,21 +1063,21 @@ static int tvp7002_probe(struct i2c_client *c, const struct i2c_device_id *id)
error = tvp7002_write_inittab(sd, tvp7002_init_default);

if (error < 0)
goto found_error;
return error;

/* Set polarity information after registers have been set */
polarity_a = 0x20 | device->pdata->hs_polarity << 5
| device->pdata->vs_polarity << 2;
error = tvp7002_write(sd, TVP7002_SYNC_CTL_1, polarity_a);
if (error < 0)
goto found_error;
return error;

polarity_b = 0x01 | device->pdata->fid_polarity << 2
| device->pdata->sog_polarity << 1
| device->pdata->clk_polarity;
error = tvp7002_write(sd, TVP7002_MISC_CTL_3, polarity_b);
if (error < 0)
goto found_error;
return error;

/* Set registers according to default video mode */
preset.preset = device->current_preset->preset;
Expand All @@ -1091,16 +1091,11 @@ static int tvp7002_probe(struct i2c_client *c, const struct i2c_device_id *id)
int err = device->hdl.error;

v4l2_ctrl_handler_free(&device->hdl);
kfree(device);
return err;
}
v4l2_ctrl_handler_setup(&device->hdl);

found_error:
if (error < 0)
kfree(device);

return error;
return 0;
}

/*
Expand All @@ -1120,7 +1115,6 @@ static int tvp7002_remove(struct i2c_client *c)

v4l2_device_unregister_subdev(sd);
v4l2_ctrl_handler_free(&device->hdl);
kfree(device);
return 0;
}

Expand Down

0 comments on commit 9cc117e

Please sign in to comment.