1. 19 6月, 2006 6 次提交
  2. 18 6月, 2006 15 次提交
  3. 13 6月, 2006 1 次提交
  4. 12 6月, 2006 1 次提交
  5. 11 6月, 2006 2 次提交
  6. 10 6月, 2006 3 次提交
  7. 09 6月, 2006 9 次提交
  8. 06 6月, 2006 3 次提交
    • C
      [MIPS] Fix sparsemem support. · b1c231f5
      Chad Reese 提交于
          
      Move memory_present() in arch/mips/kernel/setup.c. When using sparsemem
      extreme, this function does an allocate for bootmem. This would always
      fail since init_bootmem hasn't been called yet.
          
      Move memory_present after free_bootmem. This only marks actual memory
      ranges as present instead of the entire address space.
      Signed-off-by: NChad Reese  <creese@caviumnetworks.com>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      b1c231f5
    • A
      [MIPS] Fix compiler warnings (field width, unused variable) · ecf52d3c
      Atsushi Nemoto 提交于
          
      Fix following warnings:
      linux/arch/mips/kernel/setup.c:432: warning: field width is not type int (arg 2)
      linux/arch/mips/kernel/setup.c:432: warning: field width is not type int (arg 4)
      linux/arch/mips/kernel/syscall.c:279: warning: unused variable `len'
      linux/arch/mips/kernel/syscall.c:280: warning: unused variable `name'
      linux/arch/mips/math-emu/dp_fint.c:32: warning: unused variable `xc'
      linux/arch/mips/math-emu/dp_flong.c:32: warning: unused variable `xc'
      linux/arch/mips/math-emu/sp_fint.c:32: warning: unused variable `xc'
      linux/arch/mips/math-emu/sp_flong.c:32: warning: unused variable `xc'
          
      (original patch by Atsushi, slight changes to the setup.c part by me.)
      Signed-off-by: NAtsushi Nemoto <anemo@mba.ocn.ne.jp>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      ecf52d3c
    • A
      [MIPS] Fix sparse warnings about too big constants. · 460c0422
      Atsushi Nemoto 提交于
          
      Fix following warnings:
      linux/arch/mips/kernel/setup.c:249:12: warning: constant 0xffffffff00000000 is so big it is unsigned long
      linux/arch/mips/kernel/cpu-bugs64.c:209:10: warning: constant 0xffffffffffffdb9a is so big it is unsigned long
      linux/arch/mips/kernel/cpu-bugs64.c:227:10: warning: constant 0xffffffffffffdb9a is so big it is unsigned long
      linux/arch/mips/kernel/cpu-bugs64.c:283:10: warning: constant 0xffffffffffffdb9a is so big it is unsigned long
      linux/arch/mips/kernel/cpu-bugs64.c:299:10: warning: constant 0xffffffffffffdb9a is so big it is unsigned long
      Signed-off-by: NAtsushi Nemoto <anemo@mba.ocn.ne.jp>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      460c0422