Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 2117
b: refs/heads/master
c: 7bb7c3a
h: refs/heads/master
i:
  2115: 0bdda19
v: v3
  • Loading branch information
David Gibson authored and Jeff Garzik committed May 13, 2005
1 parent 17e9f2d commit 1060c96
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e67d9d9d9e3934fc2844b795ed68f2d87e9a047a
refs/heads/master: 7bb7c3a326f509acbdaf550b54fba565544ef200
5 changes: 4 additions & 1 deletion trunk/drivers/net/wireless/orinoco.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,9 @@ EXPORT_SYMBOL(orinoco_debug);
static int suppress_linkstatus; /* = 0 */
module_param(suppress_linkstatus, bool, 0644);
MODULE_PARM_DESC(suppress_linkstatus, "Don't log link status changes");
static int ignore_disconnect; /* = 0 */
module_param(ignore_disconnect, int, 0644);
MODULE_PARM_DESC(ignore_disconnect, "Don't report lost link to the network layer");

/********************************************************************/
/* Compile time configuration and compatibility stuff */
Expand Down Expand Up @@ -1320,7 +1323,7 @@ static void __orinoco_ev_info(struct net_device *dev, hermes_t *hw)

if (connected)
netif_carrier_on(dev);
else
else if (!ignore_disconnect)
netif_carrier_off(dev);

if (newstatus != priv->last_linkstatus)
Expand Down

0 comments on commit 1060c96

Please sign in to comment.