diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2007-07-05 19:04:27 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-18 14:24:42 -0300 |
commit | ba2cf98249795f03792d1409a3b6aaa589ea0745 (patch) | |
tree | d384e88ab8dc95560c4d393ad39821315cb538e9 /drivers | |
parent | 59800555f79a52394c3c29e19e448b4635daf14c (diff) | |
download | linux-3.10-ba2cf98249795f03792d1409a3b6aaa589ea0745.tar.gz linux-3.10-ba2cf98249795f03792d1409a3b6aaa589ea0745.tar.bz2 linux-3.10-ba2cf98249795f03792d1409a3b6aaa589ea0745.zip |
V4L/DVB (5831): stradis: use ARRAY_SIZE
sizeof(palette2fmt) / sizeof(u32) => ARRAY_SIZE(palette2fmt)
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/stradis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/stradis.c b/drivers/media/video/stradis.c index 3e736be5de8..eb220461ac7 100644 --- a/drivers/media/video/stradis.c +++ b/drivers/media/video/stradis.c @@ -1321,7 +1321,7 @@ static int saa_ioctl(struct inode *inode, struct file *file, u32 format; if (copy_from_user(&p, arg, sizeof(p))) return -EFAULT; - if (p.palette < sizeof(palette2fmt) / sizeof(u32)) { + if (p.palette < ARRAY_SIZE(palette2fmt)) { format = palette2fmt[p.palette]; saa->win.color_fmt = format; saawrite(format | 0x60, |