projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
98ae127
)
V4L/DVB (6563): tda8290: optimize for loop in tda829x_probe function
author
Michael Krufky
<mkrufky@linuxtv.org>
Mon, 5 Nov 2007 12:54:42 +0000
(09:54 -0300)
committer
Mauro Carvalho Chehab
<mchehab@infradead.org>
Fri, 25 Jan 2008 21:02:02 +0000
(19:02 -0200)
Thanks to Trent Piepho for pointing this out.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/tda8290.c
patch
|
blob
|
history
diff --git
a/drivers/media/video/tda8290.c
b/drivers/media/video/tda8290.c
index
a849ded
..
c606f3c
100644
(file)
--- a/
drivers/media/video/tda8290.c
+++ b/
drivers/media/video/tda8290.c
@@
-754,9
+754,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 */