aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/edac/edac_module.c
diff options
context:
space:
mode:
authorDouglas Thompson <dougthompson@xmission.com>2007-07-19 04:50:21 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-19 13:04:56 -0400
commit494d0d55bcc7ef94c744a59779327e45a27f7801 (patch)
treeaa1092577ed0e89b482a35ce39fb147e8f0c4517 /drivers/edac/edac_module.c
parent7391c6dcab3094610cb99bbd559beaa282582eac (diff)
drivers/edac: mod edac_opt_state_to_string function
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>
Diffstat (limited to 'drivers/edac/edac_module.c')
-rw-r--r--drivers/edac/edac_module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/edac/edac_module.c b/drivers/edac/edac_module.c
index 9e7406f28b3b..07bd16564780 100644
--- a/drivers/edac/edac_module.c
+++ b/drivers/edac/edac_module.c
@@ -35,9 +35,9 @@ static struct sysdev_class edac_class = {
35static int edac_class_valid; 35static int edac_class_valid;
36 36
37/* 37/*
38 * edac_op_state_toString() 38 * edac_op_state_to_string()
39 */ 39 */
40char *edac_op_state_toString(int opstate) 40char *edac_op_state_to_string(int opstate)
41{ 41{
42 if (opstate == OP_RUNNING_POLL) 42 if (opstate == OP_RUNNING_POLL)
43 return "POLLED"; 43 return "POLLED";