Skip to content

Commit

Permalink
V4L/DVB (10202): [PATCH] v4l/tvp514x: Don't write after line end
Browse files Browse the repository at this point in the history
to avoid:
| tvp514x 0-005c: No platform data
| !!<3>tvp514x 0-005d: No platform data

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Sebastian Andrzej Siewior authored and Mauro Carvalho Chehab committed Jan 29, 2009
1 parent 77f5627 commit 0c37dd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/tvp514x.c
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ tvp514x_probe(struct i2c_client *client, const struct i2c_device_id *id)

decoder->pdata = client->dev.platform_data;
if (!decoder->pdata) {
v4l_err(client, "No platform data\n!!");
v4l_err(client, "No platform data!!\n");
return -ENODEV;
}
/*
Expand Down

0 comments on commit 0c37dd7

Please sign in to comment.