From: Trent Piepho Date: Tue, 8 Aug 2006 12:10:05 +0000 (-0300) Subject: V4L/DVB (4366): Remove of couple of useless lines X-Git-Tag: v2.6.19-rc1~643^2~155 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=22694c0c38ba023c6535f6b5b7925f9fb7a868fd;p=safe%2Fjmp%2Flinux-2.6 V4L/DVB (4366): Remove of couple of useless lines A buffer was set just before an if block, and then again in both branches of the if. Obvious coding error. Signed-off-by: Trent Piepho Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/tuner-simple.c b/drivers/media/video/tuner-simple.c index abe37cf..e053b84 100644 --- a/drivers/media/video/tuner-simple.c +++ b/drivers/media/video/tuner-simple.c @@ -439,8 +439,6 @@ static void default_set_radio_freq(struct i2c_client *c, unsigned int freq) buffer[3] = 0xa4; break; } - buffer[0] = (div>>8) & 0x7f; - buffer[1] = div & 0xff; if (params->cb_first_if_lower_freq && div < t->last_div) { buffer[0] = buffer[2]; buffer[1] = buffer[3];