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
24a9366b
Commit
24a9366b
authored
Apr 30, 2002
by
Dave Jones
Committed by
Jeff Garzik
Apr 30, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/strtok/strsep/ in gt96100 net driver
parent
fd226511
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
drivers/net/gt96100eth.c
drivers/net/gt96100eth.c
+3
-2
No files found.
drivers/net/gt96100eth.c
View file @
24a9366b
...
@@ -1624,8 +1624,9 @@ static int __init gt96100_setup(char *options)
...
@@ -1624,8 +1624,9 @@ static int __init gt96100_setup(char *options)
if
(
!
options
||
!*
options
)
if
(
!
options
||
!*
options
)
return
0
;
return
0
;
for
(
this_opt
=
strtok
(
options
,
","
);
while
((
this_opt
=
strsep
(
&
options
,
","
))
!=
NULL
)
{
this_opt
;
this_opt
=
strtok
(
NULL
,
","
))
{
if
(
!*
this_opt
)
continue
;
if
(
!
strncmp
(
this_opt
,
"mac0:"
,
5
))
{
if
(
!
strncmp
(
this_opt
,
"mac0:"
,
5
))
{
memcpy
(
mac0
,
this_opt
+
5
,
17
);
memcpy
(
mac0
,
this_opt
+
5
,
17
);
mac0
[
17
]
=
'\0'
;
mac0
[
17
]
=
'\0'
;
...
...
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