diff options
Diffstat (limited to 'drivers/media/radio/tef6862.c')
-rw-r--r-- | drivers/media/radio/tef6862.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/media/radio/tef6862.c b/drivers/media/radio/tef6862.c index 0991e1973678..3408685b690c 100644 --- a/drivers/media/radio/tef6862.c +++ b/drivers/media/radio/tef6862.c | |||
@@ -118,9 +118,11 @@ static int tef6862_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f) | |||
118 | i2cmsg[2] = pll & 0xff; | 118 | i2cmsg[2] = pll & 0xff; |
119 | 119 | ||
120 | err = i2c_master_send(client, i2cmsg, sizeof(i2cmsg)); | 120 | err = i2c_master_send(client, i2cmsg, sizeof(i2cmsg)); |
121 | if (!err) | 121 | if (err != sizeof(i2cmsg)) |
122 | state->freq = f->frequency; | 122 | return err < 0 ? err : -EIO; |
123 | return err; | 123 | |
124 | state->freq = f->frequency; | ||
125 | return 0; | ||
124 | } | 126 | } |
125 | 127 | ||
126 | static int tef6862_g_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f) | 128 | static int tef6862_g_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f) |