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
7cca105b
Commit
7cca105b
authored
Feb 12, 2003
by
Jeff Garzik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[netdrvr amd8111e] remove stray ';', fixing register dump [#311]
Fixes bugzilla bug #311.
parent
35114c45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drivers/net/amd8111e.c
drivers/net/amd8111e.c
+1
-1
No files found.
drivers/net/amd8111e.c
View file @
7cca105b
...
...
@@ -953,7 +953,7 @@ static char* amd8111e_read_regs(struct amd8111e_priv* lp)
reg_buff
=
kmalloc
(
AMD8111E_REG_DUMP_LEN
,
GFP_KERNEL
);
if
(
NULL
==
reg_buff
)
return
NULL
;
for
(
i
=
0
;
i
<
AMD8111E_REG_DUMP_LEN
;
i
+=
4
);
for
(
i
=
0
;
i
<
AMD8111E_REG_DUMP_LEN
;
i
+=
4
)
reg_buff
[
i
]
=
readl
(
mmio
+
i
);
return
reg_buff
;
}
...
...
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