Skip to content

Commit

Permalink
[PATCH] v4l-944-added-driver-for-saa7127-video-tidy
Browse files Browse the repository at this point in the history
Remove unneeded (and undesirable) casts.

Cc: Hans Verkuil <hverkuil@xs4all.nl>
Cc: Chris Kennedy <c@groovy.org>
Cc: Kevin Thayer <nufan_wfk@yahoo.com>
Cc: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Nov 14, 2005
1 parent cfbb5b8 commit 419d4e7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions drivers/media/video/saa7127.c
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ static int saa7127_write_inittab(struct i2c_client *client,

static int saa7127_set_vps(struct i2c_client *client, struct v4l2_sliced_vbi_data *data)
{
struct saa7127_state *state = (struct saa7127_state *)i2c_get_clientdata(client);
struct saa7127_state *state = i2c_get_clientdata(client);
int enable = (data->line != 0);

if (enable && (data->field != 0 || data->line != 16))
Expand Down Expand Up @@ -391,7 +391,7 @@ static int saa7127_set_vps(struct i2c_client *client, struct v4l2_sliced_vbi_dat

static int saa7127_set_cc(struct i2c_client *client, struct v4l2_sliced_vbi_data *data)
{
struct saa7127_state *state = (struct saa7127_state *)i2c_get_clientdata(client);
struct saa7127_state *state = i2c_get_clientdata(client);
u16 cc = data->data[0] << 8 | data->data[1];
int enable = (data->line != 0);

Expand All @@ -417,7 +417,7 @@ static int saa7127_set_cc(struct i2c_client *client, struct v4l2_sliced_vbi_data

static int saa7127_set_xds(struct i2c_client *client, struct v4l2_sliced_vbi_data *data)
{
struct saa7127_state *state = (struct saa7127_state *)i2c_get_clientdata(client);
struct saa7127_state *state = i2c_get_clientdata(client);
u16 xds = data->data[1] << 8 | data->data[0];
int enable = (data->line != 0);

Expand All @@ -443,7 +443,7 @@ static int saa7127_set_xds(struct i2c_client *client, struct v4l2_sliced_vbi_dat

static int saa7127_set_wss(struct i2c_client *client, struct v4l2_sliced_vbi_data *data)
{
struct saa7127_state *state = (struct saa7127_state *)i2c_get_clientdata(client);
struct saa7127_state *state = i2c_get_clientdata(client);
int enable = (data->line != 0);

if (enable && (data->field != 0 || data->line != 23))
Expand All @@ -467,7 +467,7 @@ static int saa7127_set_wss(struct i2c_client *client, struct v4l2_sliced_vbi_dat

static int saa7127_set_video_enable(struct i2c_client *client, int enable)
{
struct saa7127_state *state = (struct saa7127_state *)i2c_get_clientdata(client);
struct saa7127_state *state = i2c_get_clientdata(client);

if (enable) {
saa7127_dbg("Enable Video Output\n");
Expand All @@ -486,7 +486,7 @@ static int saa7127_set_video_enable(struct i2c_client *client, int enable)

static int saa7127_set_std(struct i2c_client *client, v4l2_std_id std)
{
struct saa7127_state *state = (struct saa7127_state *)i2c_get_clientdata(client);
struct saa7127_state *state = i2c_get_clientdata(client);
const struct i2c_reg_value *inittab;

if (std & V4L2_STD_525_60) {
Expand All @@ -509,7 +509,7 @@ static int saa7127_set_std(struct i2c_client *client, v4l2_std_id std)

static int saa7127_set_output_type(struct i2c_client *client, int output)
{
struct saa7127_state *state = (struct saa7127_state *)i2c_get_clientdata(client);
struct saa7127_state *state = i2c_get_clientdata(client);

switch (output) {
case SAA7127_OUTPUT_TYPE_RGB:
Expand Down Expand Up @@ -558,7 +558,7 @@ static int saa7127_set_output_type(struct i2c_client *client, int output)

static int saa7127_set_input_type(struct i2c_client *client, int input)
{
struct saa7127_state *state = (struct saa7127_state *)i2c_get_clientdata(client);
struct saa7127_state *state = i2c_get_clientdata(client);

switch (input) {
case SAA7127_INPUT_TYPE_NORMAL: /* avia */
Expand Down

0 comments on commit 419d4e7

Please sign in to comment.