]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/mips/kernel/gdb-stub.c
[MIPS] Replace __attribute_used__ with __used
[linux-2.6-omap-h63xx.git] / arch / mips / kernel / gdb-stub.c
index 7bc882049269cf66dfa8c5221327faf682d46c48..cb5623aad552881b1d9e2e30c0e5e8c1fdaa02da 100644 (file)
@@ -1099,12 +1099,12 @@ void adel(void)
  * malloc is needed by gdb client in "call func()", even a private one
  * will make gdb happy
  */
-static void * __attribute_used__ malloc(size_t size)
+static void __used *malloc(size_t size)
 {
        return kmalloc(size, GFP_ATOMIC);
 }
 
-static void __attribute_used__ free (void *where)
+static void __used free(void *where)
 {
        kfree(where);
 }