aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-09-13 21:23:59 -0700
committerWim Van Sebroeck <wim@iguana.be>2010-10-28 21:36:05 +0000
commita2b89cd85ed55029400521a93dde868ac7150b31 (patch)
tree36935382a62625d0a25709b862ef22758d4a326b /drivers/watchdog
parent641912f479962e50b29573a8c0e8c514eb02e9b8 (diff)
downloadkernel_samsung_smdk4412-a2b89cd85ed55029400521a93dde868ac7150b31.zip
kernel_samsung_smdk4412-a2b89cd85ed55029400521a93dde868ac7150b31.tar.gz
kernel_samsung_smdk4412-a2b89cd85ed55029400521a93dde868ac7150b31.tar.bz2
watchdog: Use static const char * const where possible
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/machzwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/machzwd.c b/drivers/watchdog/machzwd.c
index 2d118cf..edffe68 100644
--- a/drivers/watchdog/machzwd.c
+++ b/drivers/watchdog/machzwd.c
@@ -388,7 +388,7 @@ static struct notifier_block zf_notifier = {
static void __init zf_show_action(int act)
{
- char *str[] = { "RESET", "SMI", "NMI", "SCI" };
+ static const char * const str[] = { "RESET", "SMI", "NMI", "SCI" };
printk(KERN_INFO PFX ": Watchdog using action = %s\n", str[act]);
}