aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorTrent Piepho <xyzzy@speakeasy.org>2007-07-05 18:04:27 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-07-18 13:24:42 -0400
commitba2cf98249795f03792d1409a3b6aaa589ea0745 (patch)
treed384e88ab8dc95560c4d393ad39821315cb538e9 /drivers
parent59800555f79a52394c3c29e19e448b4635daf14c (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/stradis.c b/drivers/media/video/stradis.c
index 3e736be5de84..eb220461ac77 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,
1321 u32 format; 1321 u32 format;
1322 if (copy_from_user(&p, arg, sizeof(p))) 1322 if (copy_from_user(&p, arg, sizeof(p)))
1323 return -EFAULT; 1323 return -EFAULT;
1324 if (p.palette < sizeof(palette2fmt) / sizeof(u32)) { 1324 if (p.palette < ARRAY_SIZE(palette2fmt)) {
1325 format = palette2fmt[p.palette]; 1325 format = palette2fmt[p.palette];
1326 saa->win.color_fmt = format; 1326 saa->win.color_fmt = format;
1327 saawrite(format | 0x60, 1327 saawrite(format | 0x60,