diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2009-09-16 20:25:07 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-09-17 14:07:51 -0400 |
commit | 982f6ffeeed5ef6104cfd72e517ff9e7a9270fda (patch) | |
tree | cfe3546c4983d29deb1794890dcfd26ea480296a /arch/mips/kernel/kspd.c | |
parent | 2882b0c63ac6085fd5c18959240b6f7d6ffb8d5b (diff) |
MIPS: Remove useless zero initializations.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/kspd.c')
-rw-r--r-- | arch/mips/kernel/kspd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/kernel/kspd.c b/arch/mips/kernel/kspd.c index fd6e51224034..f2397f00db43 100644 --- a/arch/mips/kernel/kspd.c +++ b/arch/mips/kernel/kspd.c | |||
@@ -31,7 +31,7 @@ | |||
31 | #include <asm/rtlx.h> | 31 | #include <asm/rtlx.h> |
32 | #include <asm/kspd.h> | 32 | #include <asm/kspd.h> |
33 | 33 | ||
34 | static struct workqueue_struct *workqueue = NULL; | 34 | static struct workqueue_struct *workqueue; |
35 | static struct work_struct work; | 35 | static struct work_struct work; |
36 | 36 | ||
37 | extern unsigned long cpu_khz; | 37 | extern unsigned long cpu_khz; |
@@ -58,7 +58,7 @@ struct mtsp_syscall_generic { | |||
58 | }; | 58 | }; |
59 | 59 | ||
60 | static struct list_head kspd_notifylist; | 60 | static struct list_head kspd_notifylist; |
61 | static int sp_stopping = 0; | 61 | static int sp_stopping; |
62 | 62 | ||
63 | /* these should match with those in the SDE kit */ | 63 | /* these should match with those in the SDE kit */ |
64 | #define MTSP_SYSCALL_BASE 0 | 64 | #define MTSP_SYSCALL_BASE 0 |
@@ -328,7 +328,7 @@ static void sp_cleanup(void) | |||
328 | sys_chdir("/"); | 328 | sys_chdir("/"); |
329 | } | 329 | } |
330 | 330 | ||
331 | static int channel_open = 0; | 331 | static int channel_open; |
332 | 332 | ||
333 | /* the work handler */ | 333 | /* the work handler */ |
334 | static void sp_work(struct work_struct *unused) | 334 | static void sp_work(struct work_struct *unused) |