Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79178
b: refs/heads/master
c: 202f3f3
h: refs/heads/master
v: v3
  • Loading branch information
David Woodhouse authored and David S. Miller committed Jan 28, 2008
1 parent fe7af9c commit 9b6c63f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 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: 1f8a08342c8c1c90d0b752f28eb6f24ea7164cdb
refs/heads/master: 202f3f3ac90d8781ec1f37556c63aaf594b53581
12 changes: 2 additions & 10 deletions trunk/drivers/net/wireless/libertas/if_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,6 @@ static int if_usb_probe(struct usb_interface *intf,
"Rx URB allocation failed\n");
goto dealloc;
}
cardp->rx_urb_recall = 0;

cardp->bulk_in_size =
le16_to_cpu(endpoint->wMaxPacketSize);
cardp->bulk_in_endpointAddr =
Expand Down Expand Up @@ -232,8 +230,6 @@ static int if_usb_probe(struct usb_interface *intf,
cardp->priv = priv;
cardp->priv->fw_ready = 1;

cardp->eth_dev = priv->dev;

priv->hw_host_to_card = if_usb_host_to_card;
priv->hw_get_int_status = if_usb_get_int_status;
priv->hw_read_event_cause = if_usb_read_event_cause;
Expand Down Expand Up @@ -978,15 +974,13 @@ static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
if (priv->psstate != PS_STATE_FULL_POWER)
return -1;

netif_device_detach(cardp->eth_dev);
netif_device_detach(priv->dev);
netif_device_detach(priv->mesh_dev);

/* Unlink tx & rx urb */
usb_kill_urb(cardp->tx_urb);
usb_kill_urb(cardp->rx_urb);

cardp->rx_urb_recall = 1;

lbs_deb_leave(LBS_DEB_USB);
return 0;
}
Expand All @@ -998,11 +992,9 @@ static int if_usb_resume(struct usb_interface *intf)

lbs_deb_enter(LBS_DEB_USB);

cardp->rx_urb_recall = 0;

if_usb_submit_rx_urb(cardp);

netif_device_attach(cardp->eth_dev);
netif_device_attach(priv->dev);
netif_device_attach(priv->mesh_dev);

lbs_deb_leave(LBS_DEB_USB);
Expand Down
3 changes: 0 additions & 3 deletions trunk/drivers/net/wireless/libertas/if_usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ struct read_cb_info {

/** USB card description structure*/
struct usb_card_rec {
struct net_device *eth_dev;
struct usb_device *udev;
struct urb *rx_urb, *tx_urb;
struct lbs_private *priv;
Expand Down Expand Up @@ -75,8 +74,6 @@ struct usb_card_rec {
u32 usb_event_cause;
u8 usb_int_cause;

u8 rx_urb_recall;

s8 bootcmdresp;
};

Expand Down

0 comments on commit 9b6c63f

Please sign in to comment.