NULL,
 };
 
-static int vmlogrdr_pm_prepare(struct device *dev)
-{
-       int rc;
-       struct vmlogrdr_priv_t *priv = dev_get_drvdata(dev);
-
-       rc = 0;
-       if (priv) {
-               spin_lock_bh(&priv->priv_lock);
-               if (priv->dev_in_use)
-                       rc = -EBUSY;
-               spin_unlock_bh(&priv->priv_lock);
-       }
-       if (rc)
-               pr_err("vmlogrdr: device %s is busy. Refuse to suspend.\n",
-                      dev_name(dev));
-       return rc;
-}
-
-
-static const struct dev_pm_ops vmlogrdr_pm_ops = {
-       .prepare = vmlogrdr_pm_prepare,
-};
-
 static struct class *vmlogrdr_class;
 static struct device_driver vmlogrdr_driver = {
        .name = "vmlogrdr",
        .bus  = &iucv_bus,
-       .pm = &vmlogrdr_pm_ops,
        .groups = vmlogrdr_drv_attr_groups,
 };