LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: David Rientjes <rientjes@google.com> To: Andrew Morton <akpm@linux-foundation.org> Cc: Ralf Baechle <ralf@linux-mips.org>, linux-kernel@vger.kernel.org Subject: [patch 08/10] mips: tlbex: use __attribute_unused__ Date: Tue, 1 May 2007 21:28:45 -0700 (PDT) [thread overview] Message-ID: <Pine.LNX.4.64.0705012123330.19277@chino.kir.corp.google.com> (raw) In-Reply-To: <Pine.LNX.4.64.0705012122480.19277@chino.kir.corp.google.com> Replace function instances of __attribute__((unused)) with __attribute_unused__. Cc: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: David Rientjes <rientjes@google.com> --- arch/mips/mm/tlbex.c | 36 ++++++++++++++++++------------------ 1 files changed, 18 insertions(+), 18 deletions(-) diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c @@ -35,24 +35,24 @@ #include <asm/smp.h> #include <asm/war.h> -static __init int __attribute__((unused)) r45k_bvahwbug(void) +static __init int __attribute_unused__ r45k_bvahwbug(void) { /* XXX: We should probe for the presence of this bug, but we don't. */ return 0; } -static __init int __attribute__((unused)) r4k_250MHZhwbug(void) +static __init int __attribute_unused__ r4k_250MHZhwbug(void) { /* XXX: We should probe for the presence of this bug, but we don't. */ return 0; } -static __init int __attribute__((unused)) bcm1250_m3_war(void) +static __init int __attribute_unused__ bcm1250_m3_war(void) { return BCM1250_M3_WAR; } -static __init int __attribute__((unused)) r10000_llsc_war(void) +static __init int __attribute_unused__ r10000_llsc_war(void) { return R10000_LLSC_WAR; } @@ -511,18 +511,18 @@ L_LA(_r3000_write_probe_fail) #define i_ehb(buf) i_sll(buf, 0, 0, 3) #ifdef CONFIG_64BIT -static __init int __attribute__((unused)) in_compat_space_p(long addr) +static __init int __attribute_unused__ in_compat_space_p(long addr) { /* Is this address in 32bit compat space? */ return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L); } -static __init int __attribute__((unused)) rel_highest(long val) +static __init int __attribute_unused__ rel_highest(long val) { return ((((val + 0x800080008000L) >> 48) & 0xffff) ^ 0x8000) - 0x8000; } -static __init int __attribute__((unused)) rel_higher(long val) +static __init int __attribute_unused__ rel_higher(long val) { return ((((val + 0x80008000L) >> 32) & 0xffff) ^ 0x8000) - 0x8000; } @@ -556,8 +556,8 @@ static __init void i_LA_mostly(u32 **buf, unsigned int rs, long addr) i_lui(buf, rs, rel_hi(addr)); } -static __init void __attribute__((unused)) i_LA(u32 **buf, unsigned int rs, - long addr) +static __init void __attribute_unused__ i_LA(u32 **buf, unsigned int rs, + long addr) { i_LA_mostly(buf, rs, addr); if (rel_lo(addr)) @@ -636,8 +636,8 @@ static __init void copy_handler(struct reloc *rel, struct label *lab, move_labels(lab, first, end, off); } -static __init int __attribute__((unused)) insn_has_bdelay(struct reloc *rel, - u32 *addr) +static __init int __attribute_unused__ insn_has_bdelay(struct reloc *rel, + u32 *addr) { for (; rel->lab != label_invalid; rel++) { if (rel->addr == addr @@ -650,15 +650,15 @@ static __init int __attribute__((unused)) insn_has_bdelay(struct reloc *rel, } /* convenience functions for labeled branches */ -static void __init __attribute__((unused)) +static void __init __attribute_unused__ il_bltz(u32 **p, struct reloc **r, unsigned int reg, enum label_id l) { r_mips_pc16(r, *p, l); i_bltz(p, reg, 0); } -static void __init __attribute__((unused)) il_b(u32 **p, struct reloc **r, - enum label_id l) +static void __init __attribute_unused__ il_b(u32 **p, struct reloc **r, + enum label_id l) { r_mips_pc16(r, *p, l); i_b(p, 0); @@ -671,7 +671,7 @@ static void __init il_beqz(u32 **p, struct reloc **r, unsigned int reg, i_beqz(p, reg, 0); } -static void __init __attribute__((unused)) +static void __init __attribute_unused__ il_beqzl(u32 **p, struct reloc **r, unsigned int reg, enum label_id l) { r_mips_pc16(r, *p, l); @@ -692,7 +692,7 @@ static void __init il_bgezl(u32 **p, struct reloc **r, unsigned int reg, i_bgezl(p, reg, 0); } -static void __init __attribute__((unused)) +static void __init __attribute_unused__ il_bgez(u32 **p, struct reloc **r, unsigned int reg, enum label_id l) { r_mips_pc16(r, *p, l); @@ -810,7 +810,7 @@ static __initdata u32 final_handler[64]; * * As if we MIPS hackers wouldn't know how to nop pipelines happy ... */ -static __init void __attribute__((unused)) build_tlb_probe_entry(u32 **p) +static __init void __attribute_unused__ build_tlb_probe_entry(u32 **p) { switch (current_cpu_data.cputype) { /* Found by experiment: R4600 v2.0 needs this, too. */ @@ -1098,7 +1098,7 @@ build_get_pgd_vmalloc64(u32 **p, struct label **l, struct reloc **r, * TMP and PTR are scratch. * TMP will be clobbered, PTR will hold the pgd entry. */ -static __init void __attribute__((unused)) +static __init void __attribute_unused__ build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr) { long pgdc = (long)pgd_current;
next prev parent reply other threads:[~2007-05-02 4:30 UTC|newest] Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top 2007-05-02 4:28 [patch 01/10] compiler: define __attribute_unused__ David Rientjes 2007-05-02 4:28 ` [patch 02/10] i386 pci: type may be unused David Rientjes 2007-05-02 4:28 ` [patch 03/10] sh: dma: use __attribute_unused__ David Rientjes 2007-05-02 4:28 ` [patch 04/10] scsi: fix ambiguous gdthtable definition David Rientjes 2007-05-02 4:28 ` [patch 05/10] frv: gdb: use __attribute_unused__ David Rientjes 2007-05-02 4:28 ` [patch 06/10] i386: voyager: " David Rientjes 2007-05-02 4:28 ` [patch 07/10] mips: excite: " David Rientjes 2007-05-02 4:28 ` David Rientjes [this message] 2007-05-02 4:28 ` [patch 09/10] powerpc: ps3: " David Rientjes 2007-05-02 4:28 ` [patch 10/10] i386 mmzone: " David Rientjes 2007-05-02 15:42 ` [patch 09/10] powerpc: ps3: " Geoff Levand 2007-05-03 17:23 ` [patch 08/10] mips: tlbex: " Ralf Baechle 2007-05-03 17:23 ` [patch 07/10] mips: excite: " Ralf Baechle 2007-05-07 1:28 ` [patch 03/10] sh: dma: " Paul Mundt 2007-05-02 10:35 ` [patch 02/10] i386 pci: type may be unused Andi Kleen 2007-05-02 17:05 ` David Rientjes 2007-05-02 5:17 ` [patch 01/10] compiler: define __attribute_unused__ Alexey Dobriyan 2007-05-02 5:53 ` David Rientjes 2007-05-02 6:08 ` Andrew Morton 2007-05-02 6:46 ` Nick Piggin 2007-05-02 6:33 ` WANG Cong 2007-05-02 7:02 ` Robert P. J. Day 2007-05-02 7:17 ` David Rientjes 2007-05-02 7:47 ` Robert P. J. Day 2007-05-02 5:40 ` Rusty Russell 2007-05-02 6:06 ` David Rientjes 2007-05-02 6:25 ` David Rientjes 2007-05-02 6:29 ` Rusty Russell 2007-05-02 6:41 ` David Rientjes 2007-05-02 6:52 ` Andrew Morton 2007-05-02 7:04 ` Rusty Russell 2007-05-02 7:22 ` David Rientjes 2007-05-02 7:51 ` Rusty Russell 2007-05-02 14:55 ` Adrian Bunk 2007-05-02 15:05 ` Adrian Bunk 2007-05-02 17:16 ` David Rientjes 2007-05-03 17:51 ` Adrian Bunk 2007-05-03 18:56 ` David Rientjes 2007-05-03 19:05 ` Adrian Bunk 2007-05-03 19:24 ` David Rientjes
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=Pine.LNX.4.64.0705012123330.19277@chino.kir.corp.google.com \ --to=rientjes@google.com \ --cc=akpm@linux-foundation.org \ --cc=linux-kernel@vger.kernel.org \ --cc=ralf@linux-mips.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).