Commit e54d9eb9 authored by Andres More's avatar Andres More Committed by Greg Kroah-Hartman
Browse files

Staging: vt6656: code cleanup in vt6656_suspend()/vt6656_resume()



Not changed PSDevice priv struct, just fixed style and removed printks.

Signed-off-by: default avatarAndres More <more.andres@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 79566eb2
Loading
Loading
Loading
Loading
+20 −21
Original line number Diff line number Diff line
@@ -718,32 +718,31 @@ 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));

	return 0;
}

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

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

 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");
   }
 }

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

	return 0;
}