diff options
author | Eric Biederman <ebiederm@xmission.com> | 2004-11-10 20:11:15 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2004-11-10 20:11:15 +0000 |
commit | 26e32760f90330c88e4b7ea84ff204e67d72196d (patch) | |
tree | a6b31bf1c7439d145a884688976f5e07e8906cd8 | |
parent | 8bcb8a2adaeafdd38a7b03087a815f8e4230392b (diff) |
- Remove unused start_stop.h
This file died with the last round of cpu restructuring I just missed it earlier.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1775 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/include/smp/start_stop.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/include/smp/start_stop.h b/src/include/smp/start_stop.h deleted file mode 100644 index 84fd331ccc..0000000000 --- a/src/include/smp/start_stop.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef SMP_START_STOP_H -#define SMP_START_STOP_H - -#if CONFIG_SMP == 1 -#include <smp/atomic.h> -unsigned long this_processors_id(void); -int processor_index(unsigned long processor_id); -void stop_cpu(unsigned long processor_id); -int start_cpu(unsigned long processor_id); -void startup_other_cpus(unsigned long *processor_map); -#else -#define this_processors_id() 0 -#define startup_other_cpus(p) do {} while(0) -#define processor_index(p) 0 -#endif - -#endif /* SMP_START_STOP_H */ |