Skip to content

Commit

Permalink
[PATCH] libertas: Avoid MESH_AUTOSTARTED spam on console
Browse files Browse the repository at this point in the history
Signed-off-by: Luis Carlos Cobo <luisca@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Luis Carlos Cobo authored and David S. Miller committed Oct 10, 2007
1 parent 8ff12da commit 9cdc6d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/net/wireless/libertas/cmdresp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1007,13 +1007,13 @@ int libertas_process_event(wlan_private * priv)
break;

case MACREG_INT_CODE_MESH_AUTO_STARTED:
lbs_pr_alert("EVENT: MESH_AUTO_STARTED\n");
adapter->connect_status = LIBERTAS_CONNECTED ;
lbs_pr_info("EVENT: MESH_AUTO_STARTED\n");
adapter->connect_status = LIBERTAS_CONNECTED;
if (priv->mesh_open == 1) {
netif_wake_queue(priv->mesh_dev) ;
netif_carrier_on(priv->mesh_dev) ;
netif_wake_queue(priv->mesh_dev);
netif_carrier_on(priv->mesh_dev);
}
adapter->mode = IW_MODE_ADHOC ;
adapter->mode = IW_MODE_ADHOC;
schedule_work(&priv->sync_channel);
break;

Expand Down

0 comments on commit 9cdc6d2

Please sign in to comment.