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
87b76279
Commit
87b76279
authored
May 13, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drivers/net/sunlance.c: Make init_block_dvma a dma_addr_t
parent
d03a7575
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/net/sunlance.c
drivers/net/sunlance.c
+2
-2
No files found.
drivers/net/sunlance.c
View file @
87b76279
...
...
@@ -258,7 +258,7 @@ struct lance_private {
void
(
*
tx
)(
struct
net_device
*
);
char
*
name
;
__u32
init_block_dvma
;
dma_addr_t
init_block_dvma
;
struct
net_device
*
dev
;
/* Backpointer */
struct
lance_private
*
next_module
;
struct
sbus_dev
*
sdev
;
...
...
@@ -320,7 +320,7 @@ static void lance_init_ring_dvma(struct net_device *dev)
{
struct
lance_private
*
lp
=
(
struct
lance_private
*
)
dev
->
priv
;
volatile
struct
lance_init_block
*
ib
=
lp
->
init_block
;
__u32
aib
=
lp
->
init_block_dvma
;
dma_addr_t
aib
=
lp
->
init_block_dvma
;
__u32
leptr
;
int
i
;
...
...
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