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
Kirill Smelkov
linux
Commits
d53fc4c3
Commit
d53fc4c3
authored
Jan 07, 2003
by
Muli Ben-Yehuda
Committed by
Linus Torvalds
Jan 07, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PATCH: fix "assignment from incompatible pointer type"
parent
10d43ec6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
drivers/char/agp/amd-k7-agp.c
drivers/char/agp/amd-k7-agp.c
+2
-2
drivers/char/agp/sworks-agp.c
drivers/char/agp/sworks-agp.c
+2
-2
No files found.
drivers/char/agp/amd-k7-agp.c
View file @
d53fc4c3
...
...
@@ -138,8 +138,8 @@ static int amd_create_gatt_table(void)
return
retval
;
}
agp_bridge
.
gatt_table_real
=
(
u
nsigned
long
*
)
page_dir
.
real
;
agp_bridge
.
gatt_table
=
(
u
nsigned
long
*
)
page_dir
.
remapped
;
agp_bridge
.
gatt_table_real
=
(
u
32
*
)
page_dir
.
real
;
agp_bridge
.
gatt_table
=
(
u
32
*
)
page_dir
.
remapped
;
agp_bridge
.
gatt_bus_addr
=
virt_to_phys
(
page_dir
.
real
);
/* Get the address for the gart region.
...
...
drivers/char/agp/sworks-agp.c
View file @
d53fc4c3
...
...
@@ -160,8 +160,8 @@ static int serverworks_create_gatt_table(void)
return
retval
;
}
agp_bridge
.
gatt_table_real
=
(
u
nsigned
long
*
)
page_dir
.
real
;
agp_bridge
.
gatt_table
=
(
u
nsigned
long
*
)
page_dir
.
remapped
;
agp_bridge
.
gatt_table_real
=
(
u
32
*
)
page_dir
.
real
;
agp_bridge
.
gatt_table
=
(
u
32
*
)
page_dir
.
remapped
;
agp_bridge
.
gatt_bus_addr
=
virt_to_phys
(
page_dir
.
real
);
/* Get the address for the gart region.
...
...
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