Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
7afb380d
Commit
7afb380d
authored
Jun 11, 2008
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'davem-fixes' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
parents
a4056573
208aefa2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
drivers/net/fec_mpc52xx.c
drivers/net/fec_mpc52xx.c
+1
-1
drivers/net/ipg.c
drivers/net/ipg.c
+2
-2
drivers/net/r6040.c
drivers/net/r6040.c
+1
-1
No files found.
drivers/net/fec_mpc52xx.c
View file @
7afb380d
...
...
@@ -78,7 +78,7 @@ module_param_array_named(mac, mpc52xx_fec_mac_addr, byte, NULL, 0);
MODULE_PARM_DESC
(
mac
,
"six hex digits, ie. 0x1,0x2,0xc0,0x01,0xba,0xbe"
);
#define MPC52xx_MESSAGES_DEFAULT ( NETIF_MSG_DRV | NETIF_MSG_PROBE | \
NETIF_MSG_LINK | NETIF_MSG_IFDOWN | NETIF_MSG_IF
DOWN
)
NETIF_MSG_LINK | NETIF_MSG_IFDOWN | NETIF_MSG_IF
UP
)
static
int
debug
=
-
1
;
/* the above default */
module_param
(
debug
,
int
,
0
);
MODULE_PARM_DESC
(
debug
,
"debugging messages level"
);
...
...
drivers/net/ipg.c
View file @
7afb380d
...
...
@@ -577,12 +577,12 @@ static void ipg_nic_set_multicast_list(struct net_device *dev)
/* NIC to be configured in promiscuous mode. */
receivemode
=
IPG_RM_RECEIVEALLFRAMES
;
}
else
if
((
dev
->
flags
&
IFF_ALLMULTI
)
||
(
dev
->
flags
&
IFF_MULTICAST
&
(
(
dev
->
flags
&
IFF_MULTICAST
)
&
&
(
dev
->
mc_count
>
IPG_MULTICAST_HASHTABLE_SIZE
)))
{
/* NIC to be configured to receive all multicast
* frames. */
receivemode
|=
IPG_RM_RECEIVEMULTICAST
;
}
else
if
(
dev
->
flags
&
IFF_MULTICAST
&
(
dev
->
mc_count
>
0
))
{
}
else
if
(
(
dev
->
flags
&
IFF_MULTICAST
)
&
&
(
dev
->
mc_count
>
0
))
{
/* NIC to be configured to receive selected
* multicast addresses. */
receivemode
|=
IPG_RM_RECEIVEMULTICASTHASH
;
...
...
drivers/net/r6040.c
View file @
7afb380d
...
...
@@ -733,7 +733,7 @@ static void r6040_timer(unsigned long data)
}
/* Timer active again */
mod_timer
(
&
lp
->
timer
,
jiffies
+
round_jiffies
(
HZ
));
mod_timer
(
&
lp
->
timer
,
round_jiffies
(
jiffies
+
HZ
));
}
/* Read/set MAC address routines */
...
...
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