]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drivers/edac: mod edac_opt_state_to_string function
authorDouglas Thompson <dougthompson@xmission.com>
Thu, 19 Jul 2007 08:50:21 +0000 (01:50 -0700)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Thu, 19 Jul 2007 17:04:56 +0000 (10:04 -0700)
Refactored the function edac_op_state_toString() to be edac_op_state_to_string()
for consistent style, and its callers

Signed-off-by: Douglas Thompson <dougthompson@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/edac/edac_core.h
drivers/edac/edac_device.c
drivers/edac/edac_module.c
drivers/edac/edac_pci.c

index d8435297df3d9b90b9635663479c915e37843aff..e49dce069d1f071113cf643439b5dbd1a5450ddf 100644 (file)
@@ -845,6 +845,6 @@ extern void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci);
 /*
  * edac misc APIs
  */
-extern char *edac_op_state_toString(int op_state);
+extern char *edac_op_state_to_string(int op_state);
 
 #endif                         /* _EDAC_CORE_H_ */
index d60f5df87af5f21729378d6a6861c4fef3210ee8..1d2eb20304f6104d22480d82ce3ea30491c1c860 100644 (file)
@@ -461,7 +461,7 @@ int edac_device_add_device(struct edac_device_ctl_info *edac_dev, int edac_idx)
                                edac_dev->mod_name,
                                edac_dev->ctl_name,
                                dev_name(edac_dev),
-                               edac_op_state_toString(edac_dev->op_state));
+                               edac_op_state_to_string(edac_dev->op_state));
 
        up(&device_ctls_mutex);
        return 0;
index 9e7406f28b3bfd5fbfe49710b7aede85c63afe70..07bd16564780dca2f930842c5f4d6ba84ee2b5a0 100644 (file)
@@ -35,9 +35,9 @@ static struct sysdev_class edac_class = {
 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";
index fd0b1222dc75977e8cd2305101cc1beccbba8b42..d9cd5e048cee92b520413bef79592e62b6521a73 100644 (file)
@@ -321,7 +321,7 @@ int edac_pci_add_device(struct edac_pci_ctl_info *pci, int edac_idx)
                        " DEV '%s' (%s)\n",
                        pci->mod_name,
                        pci->ctl_name,
-                       dev_name(pci), edac_op_state_toString(pci->op_state));
+                       dev_name(pci), edac_op_state_to_string(pci->op_state));
 
        edac_unlock_pci_list();
        return 0;