diff options
author | Douglas Thompson <dougthompson@xmission.com> | 2007-07-19 12:50:21 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 21:04:56 +0400 |
commit | 494d0d55bcc7ef94c744a59779327e45a27f7801 (patch) | |
tree | aa1092577ed0e89b482a35ce39fb147e8f0c4517 /drivers/edac/edac_module.c | |
parent | 7391c6dcab3094610cb99bbd559beaa282582eac (diff) | |
download | linux-494d0d55bcc7ef94c744a59779327e45a27f7801.tar.xz |
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.c | 4 |
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 = { 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"; |