Skip to content

Commit

Permalink
[ARM] Declare asm entry points in asm/smp.h
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Nov 8, 2005
1 parent 2c25013 commit 3b6353f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions include/asm-arm/smp.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ struct seq_file;
*/
extern void show_ipi_list(struct seq_file *p);

/*
* Called from assembly code, this handles an IPI.
*/
asmlinkage void do_IPI(struct pt_regs *regs);

/*
* Move global data into per-processor storage.
*/
Expand All @@ -57,6 +62,12 @@ extern void smp_send_timer(void);
*/
extern int boot_secondary(unsigned int cpu, struct task_struct *);

/*
* Called from platform specific assembly code, this is the
* secondary CPU entry point.
*/
asmlinkage void secondary_start_kernel(void);

/*
* Perform platform specific initialisation of the specified CPU.
*/
Expand Down

0 comments on commit 3b6353f

Please sign in to comment.