diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-24 19:00:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-24 19:00:26 -0400 |
commit | 2f66b529d9d131971e2509aee5478c61ca258ece (patch) | |
tree | 7a670d9eb76839ed5eecbe0cc1c1c25ba7ba446c /arch/mips/kernel/gdb-stub.c | |
parent | 1e66239e23dd0422baf891bf6af0b65ac632b676 (diff) | |
parent | cdcc9eb5e014a58aba047193a73a0de8b61b988d (diff) |
Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus:
[MIPS] Fix marge error due to conflict in arch/mips/kernel/head.S
[MIPS] ARC: Remove unused arch/mips/arc/console.c
[MIPS] SNI: sniprom
[MIPS] Jazz: remove unneeded reset functions
[MIPS] Whitespace cleanup.
[MIPS] Make resources for ds1742 "static __initdata"
[MIPS] Replace __attribute_used__ with __used
[MIPS] Jazz: Remove unused arch/mips/jazz/io.c
[MIPS] Mark prom_free_prom_memory as __init_refok
[MIPS] MIPSsim: Fix cflags
Diffstat (limited to 'arch/mips/kernel/gdb-stub.c')
-rw-r--r-- | arch/mips/kernel/gdb-stub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/gdb-stub.c b/arch/mips/kernel/gdb-stub.c index 7bc882049269..cb5623aad552 100644 --- a/arch/mips/kernel/gdb-stub.c +++ b/arch/mips/kernel/gdb-stub.c | |||
@@ -1099,12 +1099,12 @@ void adel(void) | |||
1099 | * malloc is needed by gdb client in "call func()", even a private one | 1099 | * malloc is needed by gdb client in "call func()", even a private one |
1100 | * will make gdb happy | 1100 | * will make gdb happy |
1101 | */ | 1101 | */ |
1102 | static void * __attribute_used__ malloc(size_t size) | 1102 | static void __used *malloc(size_t size) |
1103 | { | 1103 | { |
1104 | return kmalloc(size, GFP_ATOMIC); | 1104 | return kmalloc(size, GFP_ATOMIC); |
1105 | } | 1105 | } |
1106 | 1106 | ||
1107 | static void __attribute_used__ free (void *where) | 1107 | static void __used free(void *where) |
1108 | { | 1108 | { |
1109 | kfree(where); | 1109 | kfree(where); |
1110 | } | 1110 | } |