diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-04-04 15:53:04 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-04-04 15:53:04 +0000 |
commit | e51b1950418b8efb5323e3f94166241cee994e31 (patch) | |
tree | a3ad1b9ce036710581a6095882dcc30941af83ab /target/linux | |
parent | f693d3ffd832edc4cdf8a7599e204d727bead352 (diff) | |
download | upstream-e51b1950418b8efb5323e3f94166241cee994e31.tar.gz upstream-e51b1950418b8efb5323e3f94166241cee994e31.tar.bz2 upstream-e51b1950418b8efb5323e3f94166241cee994e31.zip |
[kernel/2.6.38] fix gcc-4.6 set but unused warnings
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31192 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/generic/patches-2.6.38/970-mips-gcc-4.6-set-but-unused-fixes.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/generic/patches-2.6.38/970-mips-gcc-4.6-set-but-unused-fixes.patch b/target/linux/generic/patches-2.6.38/970-mips-gcc-4.6-set-but-unused-fixes.patch new file mode 100644 index 0000000000..1721a8fa76 --- /dev/null +++ b/target/linux/generic/patches-2.6.38/970-mips-gcc-4.6-set-but-unused-fixes.patch @@ -0,0 +1,24 @@ +--- a/arch/mips/mm/tlbex.c ++++ b/arch/mips/mm/tlbex.c +@@ -1151,8 +1151,8 @@ static void __cpuinit build_r4000_tlb_re + struct uasm_reloc *r = relocs; + u32 *f; + unsigned int final_len; +- struct mips_huge_tlb_info htlb_info; +- enum vmalloc64_mode vmalloc_mode; ++ struct mips_huge_tlb_info htlb_info __maybe_unused; ++ enum vmalloc64_mode vmalloc_mode __maybe_unused; + + memset(tlb_handler, 0, sizeof(tlb_handler)); + memset(labels, 0, sizeof(labels)); +--- a/arch/mips/mm/c-r4k.c ++++ b/arch/mips/mm/c-r4k.c +@@ -1075,7 +1075,7 @@ static int __cpuinit probe_scache(void) + unsigned long flags, addr, begin, end, pow2; + unsigned int config = read_c0_config(); + struct cpuinfo_mips *c = ¤t_cpu_data; +- int tmp; ++ int tmp __maybe_unused; + + if (config & CONF_SC) + return 0; |