Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
87
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
1b46de1e
Commit
1b46de1e
authored
12 years ago
by
Alessandro Rubini
Browse files
Options
Downloads
Patches
Plain Diff
wr_nic: define weak mezzanine functions (for spec)
Signed-off-by:
Alessandro Rubini
<
rubini@gnudd.com
>
parent
a7ec7e40
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
kernel/wr_nic/device.c
+7
-0
7 additions, 0 deletions
kernel/wr_nic/device.c
kernel/wr_nic/nic-core.c
+26
-0
26 additions, 0 deletions
kernel/wr_nic/nic-core.c
with
33 additions
and
0 deletions
kernel/wr_nic/device.c
+
7
−
0
View file @
1b46de1e
...
...
@@ -42,6 +42,7 @@ static int wrn_remove(struct platform_device *pdev)
/* Then remove devices, memory maps, interrupts */
for
(
i
=
0
;
i
<
WRN_NR_ENDPOINTS
;
i
++
)
{
if
(
wrn
->
dev
[
i
])
{
wrn_mezzanine_exit
(
wrn
->
dev
[
i
]);
wrn_endpoint_remove
(
wrn
->
dev
[
i
]);
free_netdev
(
wrn
->
dev
[
i
]);
wrn
->
dev
[
i
]
=
NULL
;
...
...
@@ -168,7 +169,13 @@ static int __devinit wrn_probe(struct platform_device *pdev)
goto
out
;
/* This endpoint went in properly */
wrn
->
dev
[
i
]
=
netdev
;
err
=
wrn_mezzanine_init
(
netdev
);
if
(
err
)
dev_err
(
&
pdev
->
dev
,
"Init mezzanine code: "
"error %i
\n
"
,
err
);
}
if
(
i
==
0
)
return
-
ENODEV
;
/* no endpoints */
for
(
i
=
0
;
i
<
WRN_NR_TXDESC
;
i
++
)
{
/* Clear all tx descriptors */
struct
wrn_txd
*
tx
;
...
...
This diff is collapsed.
Click to expand it.
kernel/wr_nic/nic-core.c
+
26
−
0
View file @
1b46de1e
...
...
@@ -264,6 +264,27 @@ struct net_device_stats *wrn_get_stats(struct net_device *dev)
return
NULL
;
}
/*
* If we have a mezzanine, we need the ioctl as well as init/exit. Provide
* three weak functions here, so to link even if no mezzanine is there.
*/
int
__weak
wrn_mezzanine_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
rq
,
int
cmd
)
{
return
-
ENOIOCTLCMD
;
}
int
__weak
wrn_mezzanine_init
(
struct
net_device
*
dev
)
{
return
0
;
}
void
__weak
wrn_mezzanine_exit
(
struct
net_device
*
dev
)
{
return
;
}
static
int
wrn_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
rq
,
int
cmd
)
{
struct
wrn_ep
*
ep
=
netdev_priv
(
dev
);
...
...
@@ -300,6 +321,11 @@ static int wrn_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
return
-
EFAULT
;
return
0
;
case
PRIV_MEZZANINE_ID
:
case
PRIV_MEZZANINE_CMD
:
/* Pass this to the mezzanine driver, or use internal weak */
return
wrn_mezzanine_ioctl
(
dev
,
rq
,
cmd
);
default:
spin_lock_irq
(
&
ep
->
lock
);
res
=
generic_mii_ioctl
(
&
ep
->
mii
,
if_mii
(
rq
),
cmd
,
NULL
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment