1. 08 Aug, 2008 2 commits
    • Linus Torvalds's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog · b588e2bb
      Linus Torvalds authored
      * git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog: (70 commits)
        [WATCHDOG] more coding style clean-up's
        [WATCHDOG] sbc8360.c - move stop code into a function
        [WATCHDOG] Coding style - Indentation - part 2
        [WATCHDOG] Coding style - Indentation - part 1
        [WATCHDOG] mpc8xxx_wdt: add support for MPC8xx watchdogs
        [WATCHDOG] mpc8xxx_wdt: fix build
        [WATCHDOG] mpc8xxx_wdt: various renames, mostly s/mpc83xx/mpc8xxx/g
        [WATCHDOG] mpc83xx_wdt: rename to mpc8xxx_wdt
        [WATCHDOG] mpc83xx_wdt: add support for MPC86xx CPUs
        [WATCHDOG] mpc83xx_wdt: convert to the OF platform driver
        [WATCHDOG] pcwd: a couple of watchdogs escaped conversion
        [WATCHDOG] Clean-up includes
        [WATCHDOG] hpwdt.c - fix double includes
        [WATCHDOG 57/57] wdt501/pci: Clean up, coding style and switch to unlocked_ioctl
        [WATCHDOG 56/57] wdt977: clean up, coding style and switch to unlocked_ioctl
        [WATCHDOG 55/57] wdt285: switch to unlocked_ioctl and tidy up oddments of coding style
        [WATCHDOG 54/57] wdrtas: clean up, coding style, switch to unlocked_ioctl
        [WATCHDOG 53/57] wafer5823wdt: Clean up, coding style, switch to unlocked_ioctl
        [WATCHDOG 52/57] w83977f_wdt: clean up, coding style and switch to unlocked_ioctl
        [WATCHDOG 51/57] w83877f_wdt: clean up code, coding style, switch to unlocked_ioctl
        ...
      b588e2bb
    • Linus Torvalds's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes · 3df302ff
      Linus Torvalds authored
      * git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes:
        kbuild: a better way to generate cscope database change
        Kconfig: Extend "menuconfig" for modules to simplify Kconfig file
        bugfix for scripts/patch-kernel in 2.6 sublevel stepping
        kbuild: fix O=.. build with arm
      3df302ff
  2. 07 Aug, 2008 2 commits
  3. 06 Aug, 2008 33 commits
  4. 05 Aug, 2008 3 commits
    • Randy Dunlap's avatar
      docbook: fix s390 fatal error after header files moved · 37193fb4
      Randy Dunlap authored
      Fix (fatal error) s390 docbook file to handle renamed header files.
      Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
      cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      37193fb4
    • Andrew Morton's avatar
      drivers/media/video/vino.c needs v4l2-ioctl.h · 8c275ce3
      Andrew Morton authored
      mips allmodconfig:
      
        drivers/media/video/vino.c: In function `vino_free_buffer_with_count':
        drivers/media/video/vino.c:811: warning: passing arg 1 of `virt_to_phys' makes pointer from integer without a cast
        drivers/media/video/vino.c: In function `vino_allocate_buffer':
        drivers/media/video/vino.c:889: warning: passing arg 1 of `virt_to_phys' makes pointer from integer without a cast
        drivers/media/video/vino.c: In function `vino_ioctl':
        drivers/media/video/vino.c:4364: error: implicit declaration of function `video_usercopy'
      
      The patch fixes the error, but not the warnings.
      
      Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
      Cc: Hans Verkuil <hverkuil@xs4all.nl>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      8c275ce3
    • Benny Halevy's avatar
      mm: fix uninitialized variables for find_vma_prepare callers · dfe195fb
      Benny Halevy authored
      gcc 4.3.0 correctly emits the following warnings.
      When a vma covering addr is found, find_vma_prepare indeed returns without
      setting pprev, rb_link, and rb_parent.
      
        mm/mmap.c: In function `insert_vm_struct':
        mm/mmap.c:2085: warning: `rb_parent' may be used uninitialized in this function
        mm/mmap.c:2085: warning: `rb_link' may be used uninitialized in this function
        mm/mmap.c:2084: warning: `prev' may be used uninitialized in this function
        mm/mmap.c: In function `copy_vma':
        mm/mmap.c:2124: warning: `rb_parent' may be used uninitialized in this function
        mm/mmap.c:2124: warning: `rb_link' may be used uninitialized in this function
        mm/mmap.c:2123: warning: `prev' may be used uninitialized in this function
        mm/mmap.c: In function `do_brk':
        mm/mmap.c:1951: warning: `rb_parent' may be used uninitialized in this function
        mm/mmap.c:1951: warning: `rb_link' may be used uninitialized in this function
        mm/mmap.c:1949: warning: `prev' may be used uninitialized in this function
        mm/mmap.c: In function `mmap_region':
        mm/mmap.c:1092: warning: `rb_parent' may be used uninitialized in this function
        mm/mmap.c:1092: warning: `rb_link' may be used uninitialized in this function
        mm/mmap.c:1089: warning: `prev' may be used uninitialized in this function
      
      Hugh adds: in fact, none of find_vma_prepare's callers use those values
      when a vma is found to be already covering addr, it's either an error or
      an occasion to munmap and repeat.  Okay, let's quieten the compiler (but I
      would prefer it if pprev, rb_link and rb_parent were meaningful in that
      case, rather than whatever's in them from descending the tree).
      Signed-off-by: default avatarBenny Halevy <bhalevy@panasas.com>
      Signed-off-by: default avatarHugh Dickins <hugh@veritas.com>
      Cc: "Ryan Hope" <rmh3093@gmail.com>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      dfe195fb