aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/em28xx/em28xx.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/em28xx/em28xx.h')
-rw-r--r--drivers/media/video/em28xx/em28xx.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/drivers/media/video/em28xx/em28xx.h b/drivers/media/video/em28xx/em28xx.h
index 5ff308261a7e..15760d3d753d 100644
--- a/drivers/media/video/em28xx/em28xx.h
+++ b/drivers/media/video/em28xx/em28xx.h
@@ -493,10 +493,20 @@ inline static int em2820_gamma_set(struct em2820 *dev, s32 val)
493} 493}
494 494
495/*FIXME: maxw should be dependent of alt mode */ 495/*FIXME: maxw should be dependent of alt mode */
496#define norm_maxw(dev) 720 496inline static unsigned int norm_maxw(struct em2820 *dev)
497{
498 switch(dev->model){
499 case (EM2820_BOARD_MSI_VOX_USB_2): return(640);
500 default: return(720);
501 }
502}
503
497inline static unsigned int norm_maxh(struct em2820 *dev) 504inline static unsigned int norm_maxh(struct em2820 *dev)
498{ 505{
499 return (dev->tvnorm->id & V4L2_STD_625_50) ? 576 : 480; 506 switch(dev->model){
507 case (EM2820_BOARD_MSI_VOX_USB_2): return(480);
508 default: return (dev->tvnorm->id & V4L2_STD_625_50) ? 576 : 480;
509 }
500} 510}
501 511
502#endif 512#endif