Skip to content

Commit

Permalink
Staging: vt6656: code cleanup in vt6656_suspend()/vt6656_resume()
Browse files Browse the repository at this point in the history
Not changed PSDevice priv struct, just fixed style and removed printks.

Signed-off-by: Andres More <more.andres@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Andres More authored and Greg Kroah-Hartman committed Jun 22, 2010
1 parent 79566eb commit e54d9eb
Showing 1 changed file with 20 additions and 21 deletions.
41 changes: 20 additions & 21 deletions drivers/staging/vt6656/main_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -718,33 +718,32 @@ static BOOL device_release_WPADEV(PSDevice pDevice)

static int vt6656_suspend(struct usb_interface *intf, pm_message_t message)
{
PSDevice pDevice = usb_get_intfdata(intf);
struct net_device *dev = pDevice->dev;
PSDevice device = usb_get_intfdata(intf);

printk("VNTWUSB Suspend Start======>\n");
if(dev != NULL) {
if(pDevice->flags & DEVICE_FLAGS_OPENED)
device_close(dev);
}
if (!device || !device->dev)
return -ENODEV;

if (device->flags & DEVICE_FLAGS_OPENED)
device_close(device->dev);

usb_put_dev(interface_to_usbdev(intf));

usb_put_dev(interface_to_usbdev(intf));
return 0;
return 0;
}

static int vt6656_resume(struct usb_interface *intf)
{
PSDevice pDevice = usb_get_intfdata(intf);
struct net_device *dev = pDevice->dev;

printk("VNTWUSB Resume Start======>\n");
if(dev != NULL) {
usb_get_dev(interface_to_usbdev(intf));
if(!(pDevice->flags & DEVICE_FLAGS_OPENED)) {
if(device_open(dev)!=0)
printk("VNTWUSB Resume Start======>open fail\n");
}
}
return 0;
PSDevice device = usb_get_intfdata(intf);

if (!device || !device->dev)
return -ENODEV;

usb_get_dev(interface_to_usbdev(intf));

if (!(device->flags & DEVICE_FLAGS_OPENED))
device_open(device->dev);

return 0;
}

#endif /* CONFIG_PM */
Expand Down

0 comments on commit e54d9eb

Please sign in to comment.