Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
b9575611
Commit
b9575611
authored
Jan 07, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://kernel.bkbits.net/davem/sparc-2.6
into home.osdl.org:/home/torvalds/v2.5/linux
parents
957ac616
03eec28b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
drivers/media/dvb/ttpci/av7110.c
drivers/media/dvb/ttpci/av7110.c
+2
-2
mm/mremap.c
mm/mremap.c
+1
-1
No files found.
drivers/media/dvb/ttpci/av7110.c
View file @
b9575611
...
...
@@ -2673,9 +2673,9 @@ static int tuner_set_tv_freq (struct saa7146_dev *dev, u32 freq)
buf
[
1
]
=
div
&
0xff
;
buf
[
2
]
=
0x8e
;
if
(
freq
<
(
u32
)
16
*
168
.
25
)
if
(
freq
<
(
u32
)
(
16
*
168
.
25
)
)
config
=
0xa0
;
else
if
(
freq
<
(
u32
)
16
*
447
.
25
)
else
if
(
freq
<
(
u32
)
(
16
*
447
.
25
)
)
config
=
0x90
;
else
config
=
0x30
;
...
...
mm/mremap.c
View file @
b9575611
...
...
@@ -316,7 +316,7 @@ unsigned long do_mremap(unsigned long addr,
new_len
=
PAGE_ALIGN
(
new_len
);
/* Don't allow the degenerate cases */
if
(
!
(
old_len
|
new_len
)
)
if
(
!
old_len
||
!
new_len
)
goto
out
;
/* new_addr is only valid if MREMAP_FIXED is specified */
...
...
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