Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46664
b: refs/heads/master
c: b98b98f
h: refs/heads/master
v: v3
  • Loading branch information
Oliver Neukum authored and Greg Kroah-Hartman committed Feb 7, 2007
1 parent 35dbba1 commit e034118
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 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: 511779fd9eb7ed67116e4a1cad802363d2d58b20
refs/heads/master: b98b98f97c519894c64bf1bee6b7957e687dfc41
25 changes: 21 additions & 4 deletions trunk/drivers/usb/net/kaweth.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ static struct usb_driver kaweth_driver = {
.suspend = kaweth_suspend,
.resume = kaweth_resume,
.id_table = usb_klsi_table,
.supports_autosuspend = 1,
};

typedef __u8 eth_addr_t[6];
Expand Down Expand Up @@ -225,6 +226,7 @@ struct kaweth_device
struct delayed_work lowmem_work;

struct usb_device *dev;
struct usb_interface *intf;
struct net_device *net;
wait_queue_head_t term_wait;

Expand Down Expand Up @@ -662,9 +664,14 @@ static int kaweth_open(struct net_device *net)

dbg("Opening network device.");

res = usb_autopm_get_interface(kaweth->intf);
if (res) {
err("Interface cannot be resumed.");
return -EIO;
}
res = kaweth_resubmit_rx_urb(kaweth, GFP_KERNEL);
if (res)
return -EIO;
goto err_out;

usb_fill_int_urb(
kaweth->irq_urb,
Expand All @@ -681,18 +688,22 @@ static int kaweth_open(struct net_device *net)
res = usb_submit_urb(kaweth->irq_urb, GFP_KERNEL);
if (res) {
usb_kill_urb(kaweth->rx_urb);
return -EIO;
goto err_out;
}
kaweth->opened = 1;

netif_start_queue(net);

kaweth_async_set_rx_mode(kaweth);
return 0;

err_out:
usb_autopm_enable(kaweth->intf);
return -EIO;
}

/****************************************************************
* kaweth_close
* kaweth_kill_urbs
****************************************************************/
static void kaweth_kill_urbs(struct kaweth_device *kaweth)
{
Expand Down Expand Up @@ -724,6 +735,8 @@ static int kaweth_close(struct net_device *net)

kaweth->status &= ~KAWETH_STATUS_CLOSING;

usb_autopm_enable(kaweth->intf);

return 0;
}

Expand Down Expand Up @@ -908,6 +921,7 @@ static int kaweth_suspend(struct usb_interface *intf, pm_message_t message)
struct kaweth_device *kaweth = usb_get_intfdata(intf);
unsigned long flags;

dbg("Suspending device");
spin_lock_irqsave(&kaweth->device_lock, flags);
kaweth->status |= KAWETH_STATUS_SUSPENDING;
spin_unlock_irqrestore(&kaweth->device_lock, flags);
Expand All @@ -924,6 +938,7 @@ static int kaweth_resume(struct usb_interface *intf)
struct kaweth_device *kaweth = usb_get_intfdata(intf);
unsigned long flags;

dbg("Resuming device");
spin_lock_irqsave(&kaweth->device_lock, flags);
kaweth->status &= ~KAWETH_STATUS_SUSPENDING;
spin_unlock_irqrestore(&kaweth->device_lock, flags);
Expand Down Expand Up @@ -1086,6 +1101,8 @@ static int kaweth_probe(

dbg("Initializing net device.");

kaweth->intf = intf;

kaweth->tx_urb = usb_alloc_urb(0, GFP_KERNEL);
if (!kaweth->tx_urb)
goto err_free_netdev;
Expand Down Expand Up @@ -1265,7 +1282,7 @@ static int kaweth_internal_control_msg(struct usb_device *usb_dev,
{
struct urb *urb;
int retv;
int length;
int length = 0; /* shut up GCC */

urb = usb_alloc_urb(0, GFP_NOIO);
if (!urb)
Expand Down

0 comments on commit e034118

Please sign in to comment.