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
15c1de8a
Commit
15c1de8a
authored
Aug 28, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] USB: fix usbnet for older versions of gcc
parent
eb157e91
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
drivers/usb/net/usbnet.c
drivers/usb/net/usbnet.c
+2
-0
No files found.
drivers/usb/net/usbnet.c
View file @
15c1de8a
...
@@ -2482,12 +2482,14 @@ static int usbnet_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
...
@@ -2482,12 +2482,14 @@ static int usbnet_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
return
usbnet_ethtool_ioctl
(
net
,
(
void
__user
*
)
rq
->
ifr_data
);
return
usbnet_ethtool_ioctl
(
net
,
(
void
__user
*
)
rq
->
ifr_data
);
#ifdef NEED_MII
#ifdef NEED_MII
{
struct
usbnet
*
dev
=
(
struct
usbnet
*
)
net
->
priv
;
struct
usbnet
*
dev
=
(
struct
usbnet
*
)
net
->
priv
;
if
(
dev
->
mii
.
mdio_read
!=
NULL
&&
dev
->
mii
.
mdio_write
!=
NULL
)
if
(
dev
->
mii
.
mdio_read
!=
NULL
&&
dev
->
mii
.
mdio_write
!=
NULL
)
return
generic_mii_ioctl
(
&
dev
->
mii
,
return
generic_mii_ioctl
(
&
dev
->
mii
,
(
struct
mii_ioctl_data
*
)
&
rq
->
ifr_data
,
(
struct
mii_ioctl_data
*
)
&
rq
->
ifr_data
,
cmd
,
NULL
);
cmd
,
NULL
);
}
#endif
#endif
return
-
EOPNOTSUPP
;
return
-
EOPNOTSUPP
;
}
}
...
...
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