diff options
author | Kyle McMartin <kyle@parisc-linux.org> | 2006-01-13 22:05:21 -0700 |
---|---|---|
committer | Kyle McMartin <kyle@duet.int.mcmartin.ca> | 2006-01-22 20:26:48 -0500 |
commit | 526110f8c8d2326413e2de5496d196ee9d4856ad (patch) | |
tree | f233775851b14064d3ec942a5d32515f16df4175 | |
parent | 9073315bbc3e2149d8ffcc4b86932ca6497c94ce (diff) |
[PARISC] Remove obsolete _hlt cruft
Remove a bunch of obsolete code from process.c, these routines were
likely imported from the i386 version of process.c when the port
started. The routines are only used in floppy.c, which I seriously
doubt will ever work on parisc, due to architectural assumptions.
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
-rw-r--r-- | arch/parisc/kernel/process.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/parisc/kernel/process.c b/arch/parisc/kernel/process.c index 997ab542da8d..998700ce4556 100644 --- a/arch/parisc/kernel/process.c +++ b/arch/parisc/kernel/process.c @@ -54,28 +54,12 @@ #include <asm/uaccess.h> #include <asm/unwind.h> -static int hlt_counter __read_mostly; - /* * Power off function, if any */ void (*pm_power_off)(void); EXPORT_SYMBOL(pm_power_off); -void disable_hlt(void) -{ - hlt_counter++; -} - -EXPORT_SYMBOL(disable_hlt); - -void enable_hlt(void) -{ - hlt_counter--; -} - -EXPORT_SYMBOL(enable_hlt); - void default_idle(void) { barrier(); |