Skip to content

Commit

Permalink
x86: remove final FASTCALL() uses
Browse files Browse the repository at this point in the history
A few snuck back in to x86.

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Harvey Harrison authored and Ingo Molnar committed Feb 4, 2008
1 parent 1fba387 commit 599db4f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions include/asm-x86/highmem.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ extern pte_t *pkmap_page_table;
#define PKMAP_NR(virt) ((virt-PKMAP_BASE) >> PAGE_SHIFT)
#define PKMAP_ADDR(nr) (PKMAP_BASE + ((nr) << PAGE_SHIFT))

extern void * FASTCALL(kmap_high(struct page *page));
extern void FASTCALL(kunmap_high(struct page *page));
extern void *kmap_high(struct page *page);
extern void kunmap_high(struct page *page);

void *kmap(struct page *page);
void kunmap(struct page *page);
Expand Down
2 changes: 1 addition & 1 deletion include/asm-x86/hw_irq_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void enable_8259A_irq(unsigned int irq);
int i8259A_irq_pending(unsigned int irq);
void make_8259A_irq(unsigned int irq);
void init_8259A(int aeoi);
void FASTCALL(send_IPI_self(int vector));
void send_IPI_self(int vector);
void init_VISWS_APIC_irqs(void);
void setup_IO_APIC(void);
void disable_IO_APIC(void);
Expand Down
4 changes: 2 additions & 2 deletions include/asm-x86/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
#ifdef CONFIG_X86_32

struct task_struct; /* one of the stranger aspects of C forward declarations */
extern struct task_struct *FASTCALL(__switch_to(struct task_struct *prev,
struct task_struct *next));
struct task_struct *__switch_to(struct task_struct *prev,
struct task_struct *next);

/*
* Saving eflags is important. It switches not only IOPL between tasks,
Expand Down

0 comments on commit 599db4f

Please sign in to comment.