diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2007-12-02 21:04:57 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:03:06 -0500 |
commit | ea2562d94fade3d6ee9b22ed5addbbdba697d22a (patch) | |
tree | d77100319f417e299dce92e20a84cfd7c7a47603 /drivers/media/video/pvrusb2/pvrusb2-hdw.c | |
parent | 482cb9a75ba5df68f4bcbe806c838eaf28af34c0 (diff) |
V4L/DVB (6703): pvrusb2: Change division to bit-or for tveeprom standards
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
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-hdw.c')
-rw-r--r-- | drivers/media/video/pvrusb2/pvrusb2-hdw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-hdw.c b/drivers/media/video/pvrusb2/pvrusb2-hdw.c index b7b2d90a4912..a45721f78848 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-hdw.c +++ b/drivers/media/video/pvrusb2/pvrusb2-hdw.c | |||
@@ -1514,7 +1514,7 @@ const static struct pvr2_std_hack std_eeprom_maps[] = { | |||
1514 | }, | 1514 | }, |
1515 | { /* PAL(D/D1/K) */ | 1515 | { /* PAL(D/D1/K) */ |
1516 | .pat = V4L2_STD_DK, | 1516 | .pat = V4L2_STD_DK, |
1517 | .std = V4L2_STD_PAL_D/V4L2_STD_PAL_D1|V4L2_STD_PAL_K, | 1517 | .std = V4L2_STD_PAL_D|V4L2_STD_PAL_D1|V4L2_STD_PAL_K, |
1518 | }, | 1518 | }, |
1519 | }; | 1519 | }; |
1520 | 1520 | ||