diff options
author | Mike Isely <isely@pobox.com> | 2007-01-19 22:39:17 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-02-21 10:34:41 -0500 |
commit | 27c7b710a4010e10b14500c0b27bb4c2a806de1b (patch) | |
tree | 5f4285057225c3c08e2d560dfc1c298ac3e738d5 /drivers/media/video/pvrusb2/pvrusb2-debugifc.c | |
parent | ca545f7c39476c6c4c6e639452180a2b38342669 (diff) |
V4L/DVB (5092): Pvrusb2: Use ARRAY_SIZE wherever possible
Signed-off-by: Mike Isely <isely@pobox.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/pvrusb2/pvrusb2-debugifc.c')
-rw-r--r-- | drivers/media/video/pvrusb2/pvrusb2-debugifc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-debugifc.c b/drivers/media/video/pvrusb2/pvrusb2-debugifc.c index f985f00d885a..e9da9bb8f8de 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-debugifc.c +++ b/drivers/media/video/pvrusb2/pvrusb2-debugifc.c | |||
@@ -152,7 +152,7 @@ static unsigned long debugifc_find_mask(const char *buf,unsigned int count) | |||
152 | { | 152 | { |
153 | struct debugifc_mask_item *mip; | 153 | struct debugifc_mask_item *mip; |
154 | unsigned int idx; | 154 | unsigned int idx; |
155 | for (idx = 0; idx < sizeof(mask_items)/sizeof(mask_items[0]); idx++) { | 155 | for (idx = 0; idx < ARRAY_SIZE(mask_items); idx++) { |
156 | mip = mask_items + idx; | 156 | mip = mask_items + idx; |
157 | if (debugifc_match_keyword(buf,count,mip->name)) { | 157 | if (debugifc_match_keyword(buf,count,mip->name)) { |
158 | return mip->msk; | 158 | return mip->msk; |
@@ -169,7 +169,7 @@ static int debugifc_print_mask(char *buf,unsigned int sz, | |||
169 | unsigned int idx; | 169 | unsigned int idx; |
170 | int bcnt = 0; | 170 | int bcnt = 0; |
171 | int ccnt; | 171 | int ccnt; |
172 | for (idx = 0; idx < sizeof(mask_items)/sizeof(mask_items[0]); idx++) { | 172 | for (idx = 0; idx < ARRAY_SIZE(mask_items); idx++) { |
173 | mip = mask_items + idx; | 173 | mip = mask_items + idx; |
174 | if (!(mip->msk & msk)) continue; | 174 | if (!(mip->msk & msk)) continue; |
175 | ccnt = scnprintf(buf,sz,"%s%c%s", | 175 | ccnt = scnprintf(buf,sz,"%s%c%s", |