1. 11 5月, 2011 10 次提交
    • R
      MIPS: Loongson: Fix GCC 2.6.0 build error. · c87444af
      Ralf Baechle 提交于
        CC      arch/mips/loongson/common/env.o
      arch/mips/loongson/common/env.c: In function 'prom_init_env':
      arch/mips/loongson/common/env.c:50:12: error: variable 'ret' set but not used [-Werror=unused-but-set-variable]
      arch/mips/loongson/common/env.c:51:12: error: variable 'ret' set but not used [-Werror=unused-but-set-variable]
      arch/mips/loongson/common/env.c:52:12: error: variable 'ret' set but not used [-Werror=unused-but-set-variable]
      arch/mips/loongson/common/env.c:53:12: error: variable 'ret' set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      c87444af
    • R
      MIPS: Jazz: Fix GCC 4.6.0 build error · 84d3b0db
      Ralf Baechle 提交于
        CC      arch/mips/jazz/jazzdma.o
      arch/mips/jazz/jazzdma.c: In function 'vdma_remap':
      arch/mips/jazz/jazzdma.c:214:20: error: variable 'npages' set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      84d3b0db
    • R
      MIPS: SNI: Fix GCC 4.6.0 build error · 11b9d0ec
      Ralf Baechle 提交于
        CC      arch/mips/sni/time.o
      arch/mips/sni/time.c: In function 'dosample':
      arch/mips/sni/time.c:98:19: error: variable 'lsb' set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      11b9d0ec
    • R
      MIPS: Malta: Fix GCC 4.6.0 build error · 6be63bbb
      Ralf Baechle 提交于
        CC      arch/mips/mti-malta/malta-int.o
      arch/mips/mti-malta/malta-int.c: In function 'mips_pcibios_iack':
      arch/mips/mti-malta/malta-int.c:59:6: error: variable 'dummy' set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      6be63bbb
    • R
      MIPS: Malta: Fix GCC 4.6.0 build error · af3a1f6f
      Ralf Baechle 提交于
        CC      arch/mips/mti-malta/malta-init.o
      arch/mips/mti-malta/malta-init.c: In function 'prom_init':
      arch/mips/mti-malta/malta-init.c:196:6: error: variable 'result' set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      af3a1f6f
    • R
      MIPS: IP22: Fix GCC 4.6.0 build error · 3be1afc8
      Ralf Baechle 提交于
        CC      arch/mips/sgi-ip22/ip22-platform.o
      arch/mips/sgi-ip22/ip22-platform.c: In function 'sgiseeq_devinit':
      arch/mips/sgi-ip22/ip22-platform.c:135:15: error: variable 'tmp' set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      
      While at it rename the variable to pbdma for readability; there is a
      local variable tmp of different type being used in two nested blocks.
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      3be1afc8
    • R
      MIPS: IP22: Fix GCC 4.6.0 build error · 6fd78fc1
      Ralf Baechle 提交于
        CC      arch/mips/sgi-ip22/ip22-time.o
      arch/mips/sgi-ip22/ip22-time.c: In function 'dosample':
      arch/mips/sgi-ip22/ip22-time.c:35:10: error: variable 'lsb' set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      6fd78fc1
    • R
      MIPS: tlbex: Fix GCC 4.6.0 build error · 4a9040f4
      Ralf Baechle 提交于
        CC      arch/mips/mm/tlbex.o
      arch/mips/mm/tlbex.c: In function 'build_r4000_tlb_refill_handler':
      arch/mips/mm/tlbex.c:1155:22: error: variable 'vmalloc_mode' set but not used [-Werror=unused-but-set-variable]
      arch/mips/mm/tlbex.c:1154:28: error: variable 'htlb_info' set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      4a9040f4
    • R
      MIPS: c-r4k: Fix GCC 4.6.0 build error · 71271aab
      Ralf Baechle 提交于
        CC      arch/mips/mm/c-r4k.o
      arch/mips/mm/c-r4k.c: In function 'probe_scache':
      arch/mips/mm/c-r4k.c:1078:6: error: variable 'tmp' set but not used [-Werror=unused-but-set-variable]
      cc1: all warnings being treated as errors
      
      Older GCC versions didn't warn about the unused variable tmp because it was
      getting initialized.
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      71271aab
    • D
      MIPS: Mask jump target in ftrace_dyn_arch_init_insns(). · c54794d1
      David Daney 提交于
      The current code is abusing the uasm interface by passing jump target
      addresses with high bits set.  Mask the addresses to avoid annoying
      messages at boot time.
      Signed-off-by: NDavid Daney <ddaney@caviumnetworks.com>
      Cc: Steven Rostedt <rostedt@goodmis.org>
      Cc: Wu Zhangjin <wuzhangjin@gmail.com>
      Patchwork: https://patchwork.linux-mips.org/patch/1922/Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      c54794d1
  2. 10 5月, 2011 25 次提交
  3. 09 5月, 2011 5 次提交