]> nv-tegra.nvidia Code Review - linux-2.6.git/blobdiff - drivers/edac/edac_module.c
NULL terminate the pci_device_ids in pasemi_edac
[linux-2.6.git] / drivers / edac / edac_module.c
index 687d2ef2bbed6c28e3244bb70d7a7e9cc592d6d4..e0c4a4086055ad6f2c00bcaabbc77bd91f531d3a 100644 (file)
@@ -1,12 +1,13 @@
 /*
  * edac_module.c
  *
- * (C) 2007 www.douglaskthompson.com
+ * (C) 2007 www.softwarebitmaker.com
+ *
  * This file is licensed under the terms of the GNU General Public
  * License version 2. This program is licensed "as is" without any
  * warranty of any kind, whether express or implied.
  *
- * Author: Doug Thompson <norsk5@xmission.com>
+ * Author: Doug Thompson <dougthompson@xmission.com>
  *
  */
 #include <linux/edac.h>
 #include "edac_core.h"
 #include "edac_module.h"
 
-#define EDAC_MC_VERSION "Ver: 2.0.4 " __DATE__
+#define EDAC_VERSION "Ver: 2.1.0 " __DATE__
 
 #ifdef CONFIG_EDAC_DEBUG
 /* Values of 0 to 4 will generate output */
-int edac_debug_level = 1;
+int edac_debug_level = 2;
 EXPORT_SYMBOL_GPL(edac_debug_level);
 #endif
 
@@ -32,12 +33,12 @@ struct workqueue_struct *edac_workqueue;
 static struct sysdev_class edac_class = {
        set_kset_name("edac"),
 };
-static int edac_class_valid = 0;
+static int edac_class_valid;
 
 /*
- * edac_op_state_toString()
+ * edac_op_state_to_string()
  */
-char *edac_op_state_toString(int opstate)
+char *edac_op_state_to_string(int opstate)
 {
        if (opstate == OP_RUNNING_POLL)
                return "POLLED";
@@ -141,7 +142,7 @@ static int __init edac_init(void)
 {
        int err = 0;
 
-       edac_printk(KERN_INFO, EDAC_MC, EDAC_MC_VERSION "\n");
+       edac_printk(KERN_INFO, EDAC_MC, EDAC_VERSION "\n");
 
        /*
         * Harvest and clear any boot/initialization PCI parity errors
@@ -153,39 +154,39 @@ static int __init edac_init(void)
        edac_pci_clear_parity_errors();
 
        /*
-        * perform the registration of the /sys/devices/system/edac object
+        * perform the registration of the /sys/devices/system/edac class object
         */
        if (edac_register_sysfs_edac_name()) {
                edac_printk(KERN_ERR, EDAC_MC,
-                           "Error initializing 'edac' kobject\n");
+                       "Error initializing 'edac' kobject\n");
                err = -ENODEV;
                goto error;
        }
 
-       /* Create the MC sysfs entries, must be first
+       /*
+        * now set up the mc_kset under the edac class object
         */
-       if (edac_sysfs_memctrl_setup()) {
-               edac_printk(KERN_ERR, EDAC_MC,
-                           "Error initializing sysfs code\n");
-               err = -ENODEV;
-               goto error_sysfs;
-       }
+       err = edac_sysfs_setup_mc_kset();
+       if (err)
+               goto sysfs_setup_fail;
 
-       /* Setup/Initialize the edac_device system */
+       /* Setup/Initialize the workq for this core */
        err = edac_workqueue_setup();
        if (err) {
                edac_printk(KERN_ERR, EDAC_MC, "init WorkQueue failure\n");
-               goto error_mem;
+               goto workq_fail;
        }
 
        return 0;
 
        /* Error teardown stack */
-      error_mem:
-       edac_sysfs_memctrl_teardown();
-      error_sysfs:
+workq_fail:
+       edac_sysfs_teardown_mc_kset();
+
+sysfs_setup_fail:
        edac_unregister_sysfs_edac_name();
-      error:
+
+error:
        return err;
 }
 
@@ -199,7 +200,7 @@ static void __exit edac_exit(void)
 
        /* tear down the various subsystems */
        edac_workqueue_teardown();
-       edac_sysfs_memctrl_teardown();
+       edac_sysfs_teardown_mc_kset();
        edac_unregister_sysfs_edac_name();
 }