aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/pci/cx88/cx88.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/pci/cx88/cx88.h')
-rw-r--r--drivers/media/pci/cx88/cx88.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/pci/cx88/cx88.h b/drivers/media/pci/cx88/cx88.h
index 44ffc8b3d45f..ba0dba4a4d22 100644
--- a/drivers/media/pci/cx88/cx88.h
+++ b/drivers/media/pci/cx88/cx88.h
@@ -94,13 +94,13 @@ enum cx8802_board_access {
94/* ----------------------------------------------------------- */ 94/* ----------------------------------------------------------- */
95/* tv norms */ 95/* tv norms */
96 96
97static unsigned int inline norm_maxw(v4l2_std_id norm) 97static inline unsigned int norm_maxw(v4l2_std_id norm)
98{ 98{
99 return (norm & (V4L2_STD_MN & ~V4L2_STD_PAL_Nc)) ? 720 : 768; 99 return (norm & (V4L2_STD_MN & ~V4L2_STD_PAL_Nc)) ? 720 : 768;
100} 100}
101 101
102 102
103static unsigned int inline norm_maxh(v4l2_std_id norm) 103static inline unsigned int norm_maxh(v4l2_std_id norm)
104{ 104{
105 return (norm & V4L2_STD_625_50) ? 576 : 480; 105 return (norm & V4L2_STD_625_50) ? 576 : 480;
106} 106}