Commit af520a34 authored by Andi Drebes's avatar Andi Drebes Committed by Mauro Carvalho Chehab

V4L/DVB (5941): Ttpci/budget-av.c: ARRAY_SIZE()

This patch replaces an array size calculation done using sizeof
with an invocation of the ARRAY_SIZE macro.

Tested by compilation on an i386 box using "allyesconfig".
Diffed against Linus' git-tree.
Signed-off-by: default avatarAndi Drebes <lists-receive@programmierforen.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 261efd12
...@@ -1232,7 +1232,7 @@ static struct saa7146_ext_vv vv_data = { ...@@ -1232,7 +1232,7 @@ static struct saa7146_ext_vv vv_data = {
.capabilities = 0, // perhaps later: V4L2_CAP_VBI_CAPTURE, but that need tweaking with the saa7113 .capabilities = 0, // perhaps later: V4L2_CAP_VBI_CAPTURE, but that need tweaking with the saa7113
.flags = 0, .flags = 0,
.stds = &standard[0], .stds = &standard[0],
.num_stds = sizeof(standard) / sizeof(struct saa7146_standard), .num_stds = ARRAY_SIZE(standard),
.ioctls = &ioctls[0], .ioctls = &ioctls[0],
.ioctl = av_ioctl, .ioctl = av_ioctl,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment