Merge tag 's390-5.14-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
[linux-2.6-microblaze.git] / drivers / s390 / block / dcssblk.c
index 7faa563..29180bd 100644 (file)
@@ -17,7 +17,6 @@
 #include <linux/blkdev.h>
 #include <linux/completion.h>
 #include <linux/interrupt.h>
-#include <linux/platform_device.h>
 #include <linux/pfn_t.h>
 #include <linux/uio.h>
 #include <linux/dax.h>
@@ -983,95 +982,12 @@ dcssblk_check_params(void)
        }
 }
 
-/*
- * Suspend / Resume
- */
-static int dcssblk_freeze(struct device *dev)
-{
-       struct dcssblk_dev_info *dev_info;
-       int rc = 0;
-
-       list_for_each_entry(dev_info, &dcssblk_devices, lh) {
-               switch (dev_info->segment_type) {
-                       case SEG_TYPE_SR:
-                       case SEG_TYPE_ER:
-                       case SEG_TYPE_SC:
-                               if (!dev_info->is_shared)
-                                       rc = -EINVAL;
-                               break;
-                       default:
-                               rc = -EINVAL;
-                               break;
-               }
-               if (rc)
-                       break;
-       }
-       if (rc)
-               pr_err("Suspending the system failed because DCSS device %s "
-                      "is writable\n",
-                      dev_info->segment_name);
-       return rc;
-}
-
-static int dcssblk_restore(struct device *dev)
-{
-       struct dcssblk_dev_info *dev_info;
-       struct segment_info *entry;
-       unsigned long start, end;
-       int rc = 0;
-
-       list_for_each_entry(dev_info, &dcssblk_devices, lh) {
-               list_for_each_entry(entry, &dev_info->seg_list, lh) {
-                       segment_unload(entry->segment_name);
-                       rc = segment_load(entry->segment_name, SEGMENT_SHARED,
-                                         &start, &end);
-                       if (rc < 0) {
-// TODO in_use check ?
-                               segment_warning(rc, entry->segment_name);
-                               goto out_panic;
-                       }
-                       if (start != entry->start || end != entry->end) {
-                               pr_err("The address range of DCSS %s changed "
-                                      "while the system was suspended\n",
-                                      entry->segment_name);
-                               goto out_panic;
-                       }
-               }
-       }
-       return 0;
-out_panic:
-       panic("fatal dcssblk resume error\n");
-}
-
-static int dcssblk_thaw(struct device *dev)
-{
-       return 0;
-}
-
-static const struct dev_pm_ops dcssblk_pm_ops = {
-       .freeze         = dcssblk_freeze,
-       .thaw           = dcssblk_thaw,
-       .restore        = dcssblk_restore,
-};
-
-static struct platform_driver dcssblk_pdrv = {
-       .driver = {
-               .name   = "dcssblk",
-               .pm     = &dcssblk_pm_ops,
-       },
-};
-
-static struct platform_device *dcssblk_pdev;
-
-
 /*
  * The init/exit functions.
  */
 static void __exit
 dcssblk_exit(void)
 {
-       platform_device_unregister(dcssblk_pdev);
-       platform_driver_unregister(&dcssblk_pdrv);
        root_device_unregister(dcssblk_root_dev);
        unregister_blkdev(dcssblk_major, DCSSBLK_NAME);
 }
@@ -1081,22 +997,9 @@ dcssblk_init(void)
 {
        int rc;
 
-       rc = platform_driver_register(&dcssblk_pdrv);
-       if (rc)
-               return rc;
-
-       dcssblk_pdev = platform_device_register_simple("dcssblk", -1, NULL,
-                                                       0);
-       if (IS_ERR(dcssblk_pdev)) {
-               rc = PTR_ERR(dcssblk_pdev);
-               goto out_pdrv;
-       }
-
        dcssblk_root_dev = root_device_register("dcssblk");
-       if (IS_ERR(dcssblk_root_dev)) {
-               rc = PTR_ERR(dcssblk_root_dev);
-               goto out_pdev;
-       }
+       if (IS_ERR(dcssblk_root_dev))
+               return PTR_ERR(dcssblk_root_dev);
        rc = device_create_file(dcssblk_root_dev, &dev_attr_add);
        if (rc)
                goto out_root;
@@ -1114,10 +1017,7 @@ dcssblk_init(void)
 
 out_root:
        root_device_unregister(dcssblk_root_dev);
-out_pdev:
-       platform_device_unregister(dcssblk_pdev);
-out_pdrv:
-       platform_driver_unregister(&dcssblk_pdrv);
+
        return rc;
 }