Commit 21534301 authored by Harvey Harrison's avatar Harvey Harrison Committed by Linus Torvalds

Final removal of FASTCALL()/fastcall

All users are gone, remove definitions and comments referring
to them.
Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Acked-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b5606c2d
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#include "i830_drm.h" #include "i830_drm.h"
#include "i830_drv.h" #include "i830_drv.h"
#include <linux/interrupt.h> /* For task queue support */ #include <linux/interrupt.h> /* For task queue support */
#include <linux/pagemap.h> /* For FASTCALL on unlock_page() */ #include <linux/pagemap.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
......
...@@ -42,8 +42,8 @@ extern void __init kmap_init(void); ...@@ -42,8 +42,8 @@ extern void __init kmap_init(void);
#define PKMAP_NR(virt) ((virt - PKMAP_BASE) >> PAGE_SHIFT) #define PKMAP_NR(virt) ((virt - PKMAP_BASE) >> PAGE_SHIFT)
#define PKMAP_ADDR(nr) (PKMAP_BASE + ((nr) << PAGE_SHIFT)) #define PKMAP_ADDR(nr) (PKMAP_BASE + ((nr) << PAGE_SHIFT))
extern unsigned long __fastcall kmap_high(struct page *page); extern unsigned long kmap_high(struct page *page);
extern void __fastcall kunmap_high(struct page *page); extern void kunmap_high(struct page *page);
static inline unsigned long kmap(struct page *page) static inline unsigned long kmap(struct page *page)
{ {
......
...@@ -13,8 +13,6 @@ ...@@ -13,8 +13,6 @@
/* don't override anything */ /* don't override anything */
#define asmlinkage #define asmlinkage
#define FASTCALL(x) x
#define fastcall
#define __ALIGN .align 4,0xcb #define __ALIGN .align 4,0xcb
#define __ALIGN_STR ".align 4,0xcb" #define __ALIGN_STR ".align 4,0xcb"
......
...@@ -285,7 +285,6 @@ extern void handle_bad_irq(unsigned int irq, struct irq_desc *desc); ...@@ -285,7 +285,6 @@ extern void handle_bad_irq(unsigned int irq, struct irq_desc *desc);
/* /*
* Monolithic do_IRQ implementation. * Monolithic do_IRQ implementation.
* (is an explicit fastcall, because i386 4KSTACKS calls it from assembly)
*/ */
#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ #ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
extern unsigned int __do_IRQ(unsigned int irq); extern unsigned int __do_IRQ(unsigned int irq);
......
...@@ -73,9 +73,4 @@ ...@@ -73,9 +73,4 @@
#define ATTRIB_NORET __attribute__((noreturn)) #define ATTRIB_NORET __attribute__((noreturn))
#define NORET_AND noreturn, #define NORET_AND noreturn,
#ifndef FASTCALL
#define FASTCALL(x) x
#define fastcall
#endif
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment