Commit 480c646c authored by Paul Mundt's avatar Paul Mundt

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: default avatarPaul Mundt <lethal@linux-sh.org>
parent a74f7e04
...@@ -47,7 +47,6 @@ ...@@ -47,7 +47,6 @@
static unsigned long se_user; static unsigned long se_user;
static unsigned long se_sys; static unsigned long se_sys;
static unsigned long se_skipped;
static unsigned long se_half; static unsigned long se_half;
static unsigned long se_word; static unsigned long se_word;
static unsigned long se_dword; static unsigned long se_dword;
...@@ -77,7 +76,6 @@ proc_alignment_read(char *page, char **start, off_t off, int count, int *eof, ...@@ -77,7 +76,6 @@ proc_alignment_read(char *page, char **start, off_t off, int count, int *eof,
p += sprintf(p, "User:\t\t%lu\n", se_user); p += sprintf(p, "User:\t\t%lu\n", se_user);
p += sprintf(p, "System:\t\t%lu\n", se_sys); p += sprintf(p, "System:\t\t%lu\n", se_sys);
p += sprintf(p, "Skipped:\t%lu\n", se_skipped);
p += sprintf(p, "Half:\t\t%lu\n", se_half); p += sprintf(p, "Half:\t\t%lu\n", se_half);
p += sprintf(p, "Word:\t\t%lu\n", se_word); p += sprintf(p, "Word:\t\t%lu\n", se_word);
p += sprintf(p, "DWord:\t\t%lu\n", se_dword); p += sprintf(p, "DWord:\t\t%lu\n", se_dword);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment