diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-13 15:03:17 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-13 16:21:18 -0800 |
commit | 21534301ea1801783bd88fba2a2e617ee4d2bd28 (patch) | |
tree | ee717b7f09dcc21312c0bdcb228e2dbcf9c214fe /include/asm-mn10300 | |
parent | b5606c2d4447e80b1d72406af4e78af1eda611d4 (diff) | |
download | linux-3.10-21534301ea1801783bd88fba2a2e617ee4d2bd28.tar.gz linux-3.10-21534301ea1801783bd88fba2a2e617ee4d2bd28.tar.bz2 linux-3.10-21534301ea1801783bd88fba2a2e617ee4d2bd28.zip |
Final removal of FASTCALL()/fastcall
All users are gone, remove definitions and comments referring
to them.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-mn10300')
-rw-r--r-- | include/asm-mn10300/highmem.h | 4 | ||||
-rw-r--r-- | include/asm-mn10300/linkage.h | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/include/asm-mn10300/highmem.h b/include/asm-mn10300/highmem.h index 383c0c42982..5256854c045 100644 --- a/include/asm-mn10300/highmem.h +++ b/include/asm-mn10300/highmem.h @@ -42,8 +42,8 @@ extern void __init kmap_init(void); #define PKMAP_NR(virt) ((virt - PKMAP_BASE) >> PAGE_SHIFT) #define PKMAP_ADDR(nr) (PKMAP_BASE + ((nr) << PAGE_SHIFT)) -extern unsigned long __fastcall kmap_high(struct page *page); -extern void __fastcall kunmap_high(struct page *page); +extern unsigned long kmap_high(struct page *page); +extern void kunmap_high(struct page *page); static inline unsigned long kmap(struct page *page) { diff --git a/include/asm-mn10300/linkage.h b/include/asm-mn10300/linkage.h index 29a32e46752..dda3002a5df 100644 --- a/include/asm-mn10300/linkage.h +++ b/include/asm-mn10300/linkage.h @@ -13,8 +13,6 @@ /* don't override anything */ #define asmlinkage -#define FASTCALL(x) x -#define fastcall #define __ALIGN .align 4,0xcb #define __ALIGN_STR ".align 4,0xcb" |