From 306604fa5dd4ae69145d9e75bd202801f3066e9c Mon Sep 17 00:00:00 2001 From: Michael Krufky Date: Mon, 5 Nov 2007 07:54:42 -0500 Subject: tda8290: optimize for loop in tda829x_probe function From: Michael Krufky Thanks to Trent Piepho for pointing this out. Signed-off-by: Michael Krufky --- linux/drivers/media/video/tda8290.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'linux/drivers/media/video/tda8290.c') diff --git a/linux/drivers/media/video/tda8290.c b/linux/drivers/media/video/tda8290.c index 8fed39d31..7f59da01b 100644 --- a/linux/drivers/media/video/tda8290.c +++ b/linux/drivers/media/video/tda8290.c @@ -785,9 +785,8 @@ int tda829x_probe(struct tuner *t) tuner_i2c_xfer_send(&i2c_props, soft_reset, 1); tuner_i2c_xfer_recv(&i2c_props, buf, PROBE_BUFFER_SIZE); for (i = 1; i < PROBE_BUFFER_SIZE; i++) { - if (buf[i] == buf[0]) - continue; - break; + if (buf[i] != buf[0]) + break; } /* all bytes are equal, not a tda829x - probably a tda9887 */ -- cgit v1.2.3