struct pci_dev *pci_dev = to_pci_dev(dev);
        struct cio2_device *cio2 = pci_get_drvdata(pci_dev);
        struct cio2_queue *q = cio2->cur_queue;
+       int r;
 
        dev_dbg(dev, "cio2 suspend\n");
        if (!cio2->streaming)
                return 0;
 
        /* Stop stream */
+       r = v4l2_subdev_call(q->sensor, video, s_stream, 0);
+       if (r) {
+               dev_err(dev, "failed to stop sensor streaming\n");
+               return r;
+       }
+
        cio2_hw_exit(cio2, q);
        synchronize_irq(pci_dev->irq);
 
        }
 
        r = cio2_hw_init(cio2, q);
-       if (r)
+       if (r) {
                dev_err(dev, "fail to init cio2 hw\n");
+               return r;
+       }
+
+       r = v4l2_subdev_call(q->sensor, video, s_stream, 1);
+       if (r) {
+               dev_err(dev, "fail to start sensor streaming\n");
+               cio2_hw_exit(cio2, q);
+       }
 
        return r;
 }