lkml.org 
[lkml]   [2007]   [Aug]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH 1/3] V4L: stk11xx, use ARRAY_SIZE in another 2 cases
From
Date
stk11xx, use ARRAY_SIZE in another 2 cases

There were 2 places with constant in for loop. Use ARRARY_SIZE instead to
allow easy update of the tables.

Signed-off-by: Jiri Slaby <jirislaby@gmail.com>

---
commit addcd116df57eaca525a1c827efdd5bf3e61b7b5
tree a4ee11673dfdbaabe1500cd9e4301bd535177bfa
parent 926af968884e1e153ad2f91892ff71ec33005d22
author Jiri Slaby <jirislaby@gmail.com> Tue, 28 Aug 2007 09:53:55 +0200
committer Jiri Slaby <jirislaby@gmail.com> Tue, 28 Aug 2007 09:53:55 +0200

drivers/media/video/stk1125.c | 2 +-
drivers/media/video/stk1135.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/video/stk1125.c b/drivers/media/video/stk1125.c
index ed3cc58..2429225 100644
--- a/drivers/media/video/stk1125.c
+++ b/drivers/media/video/stk1125.c
@@ -80,7 +80,7 @@ static int stk1125_load_microcode(struct stk11xx *dev)
break;
}

- for (i = 0; i < 59; i++) {
+ for (i = 0; i < ARRAY_SIZE(values_1_204); i++) {
stk11xx_read_dummy(dev, 0x02ff);
stk11xx_write_reg(dev, 0x02ff, 0x00);

diff --git a/drivers/media/video/stk1135.c b/drivers/media/video/stk1135.c
index c6e0361..9acd951 100644
--- a/drivers/media/video/stk1135.c
+++ b/drivers/media/video/stk1135.c
@@ -53,7 +53,7 @@ static int stk1135_load_microcode(struct stk11xx *dev)
0xe4, 0x09, 0xc8, 0x08, 0x08, 0x10, 0x14
};

- for (i = 0; i < 117; i++) {
+ for (i = 0; i < ARRAY_SIZE(values_204); i++) {
stk11xx_read_dummy(dev, 0x02ff);
stk11xx_write_reg(dev, 0x02ff, 0x00);

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2007-08-28 10:21    [W:0.049 / U:0.784 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site