Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
97d9e80e
Commit
97d9e80e
authored
Sep 03, 2006
by
Mauro Carvalho Chehab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
V4L/DVB (4598): Fix a typo: VRES, instead o HRES
Signed-off-by:
Mauro Carvalho Chehab
<
mchehab@infradead.org
>
parent
3ad9fc37
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
drivers/media/video/saa7115.c
drivers/media/video/saa7115.c
+4
-4
No files found.
drivers/media/video/saa7115.c
View file @
97d9e80e
...
@@ -48,7 +48,7 @@
...
@@ -48,7 +48,7 @@
#include <media/saa7115.h>
#include <media/saa7115.h>
#include <asm/div64.h>
#include <asm/div64.h>
#define
H
RES_60HZ (480+16)
#define
V
RES_60HZ (480+16)
MODULE_DESCRIPTION
(
"Philips SAA7111/SAA7113/SAA7114/SAA7115/SAA7118 video decoder driver"
);
MODULE_DESCRIPTION
(
"Philips SAA7111/SAA7113/SAA7114/SAA7115/SAA7118 video decoder driver"
);
MODULE_AUTHOR
(
"Maxim Yevtyushkin, Kevin Thayer, Chris Kennedy, "
MODULE_AUTHOR
(
"Maxim Yevtyushkin, Kevin Thayer, Chris Kennedy, "
...
@@ -332,8 +332,8 @@ static const unsigned char saa7115_cfg_60hz_video[] = {
...
@@ -332,8 +332,8 @@ static const unsigned char saa7115_cfg_60hz_video[] = {
R_C9_B_VERT_INPUT_WINDOW_START_MSB
,
0x00
,
R_C9_B_VERT_INPUT_WINDOW_START_MSB
,
0x00
,
/* vwindow length 0xf8 = 248 */
/* vwindow length 0xf8 = 248 */
R_CA_B_VERT_INPUT_WINDOW_LENGTH
,
H
RES_60HZ
>>
1
,
R_CA_B_VERT_INPUT_WINDOW_LENGTH
,
V
RES_60HZ
>>
1
,
R_CB_B_VERT_INPUT_WINDOW_LENGTH_MSB
,
H
RES_60HZ
>>
9
,
R_CB_B_VERT_INPUT_WINDOW_LENGTH_MSB
,
V
RES_60HZ
>>
9
,
/* hwindow 0x02d0 = 720 */
/* hwindow 0x02d0 = 720 */
R_CC_B_HORIZ_OUTPUT_WINDOW_LENGTH
,
0xd0
,
R_CC_B_HORIZ_OUTPUT_WINDOW_LENGTH
,
0xd0
,
...
@@ -851,7 +851,7 @@ static int saa711x_set_size(struct i2c_client *client, int width, int height)
...
@@ -851,7 +851,7 @@ static int saa711x_set_size(struct i2c_client *client, int width, int height)
/* On 60Hz, it is using a higher Vertical Output Size */
/* On 60Hz, it is using a higher Vertical Output Size */
if
(
!
is_50hz
)
if
(
!
is_50hz
)
res
+=
(
H
RES_60HZ
-
480
)
>>
1
;
res
+=
(
V
RES_60HZ
-
480
)
>>
1
;
/* height */
/* height */
saa711x_write
(
client
,
R_CE_B_VERT_OUTPUT_WINDOW_LENGTH
,
saa711x_write
(
client
,
R_CE_B_VERT_OUTPUT_WINDOW_LENGTH
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment