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
8268d81a
Commit
8268d81a
authored
Feb 22, 2005
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AGPGART] Lower 7 bits of TLB flush register must be zero.
Signed-off-by:
Dave Jones
<
davej@redhat.com
>
parent
2d567cf3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
drivers/char/agp/via-agp.c
drivers/char/agp/via-agp.c
+2
-0
No files found.
drivers/char/agp/via-agp.c
View file @
8268d81a
...
...
@@ -83,8 +83,10 @@ static void via_tlbflush(struct agp_memory *mem)
pci_read_config_dword
(
agp_bridge
->
dev
,
VIA_GARTCTRL
,
&
temp
);
temp
|=
(
1
<<
7
);
temp
&=
~
0x7f
;
pci_write_config_dword
(
agp_bridge
->
dev
,
VIA_GARTCTRL
,
temp
);
temp
&=
~
(
1
<<
7
);
temp
&=
~
0x7f
;
pci_write_config_dword
(
agp_bridge
->
dev
,
VIA_GARTCTRL
,
temp
);
}
...
...
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