diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-09-16 02:06:39 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-09-16 02:06:39 -0400 |
commit | 480c646c32f368dfa2a076f7a120a7795e786e62 (patch) | |
tree | 97df9fb297e5f109a6e057774bae634e43050c26 /arch/sh | |
parent | a74f7e0410da9da7942cf4f08bbdb0e4fc76f972 (diff) |
sh: Kill off unused se_skipped in alignment trap notification code.
Nothing is using this, resulting in a build error with certain
configurations. Just kill it off.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/traps_32.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/sh/kernel/traps_32.c b/arch/sh/kernel/traps_32.c index 583ace55b0dc..6aba9af79eaf 100644 --- a/arch/sh/kernel/traps_32.c +++ b/arch/sh/kernel/traps_32.c | |||
@@ -47,7 +47,6 @@ | |||
47 | 47 | ||
48 | static unsigned long se_user; | 48 | static unsigned long se_user; |
49 | static unsigned long se_sys; | 49 | static unsigned long se_sys; |
50 | static unsigned long se_skipped; | ||
51 | static unsigned long se_half; | 50 | static unsigned long se_half; |
52 | static unsigned long se_word; | 51 | static unsigned long se_word; |
53 | static unsigned long se_dword; | 52 | static unsigned long se_dword; |
@@ -77,7 +76,6 @@ proc_alignment_read(char *page, char **start, off_t off, int count, int *eof, | |||
77 | 76 | ||
78 | p += sprintf(p, "User:\t\t%lu\n", se_user); | 77 | p += sprintf(p, "User:\t\t%lu\n", se_user); |
79 | p += sprintf(p, "System:\t\t%lu\n", se_sys); | 78 | p += sprintf(p, "System:\t\t%lu\n", se_sys); |
80 | p += sprintf(p, "Skipped:\t%lu\n", se_skipped); | ||
81 | p += sprintf(p, "Half:\t\t%lu\n", se_half); | 79 | p += sprintf(p, "Half:\t\t%lu\n", se_half); |
82 | p += sprintf(p, "Word:\t\t%lu\n", se_word); | 80 | p += sprintf(p, "Word:\t\t%lu\n", se_word); |
83 | p += sprintf(p, "DWord:\t\t%lu\n", se_dword); | 81 | p += sprintf(p, "DWord:\t\t%lu\n", se_dword); |