1. 22 Jul, 2007 17 commits
  2. 21 Jul, 2007 16 commits
  3. 20 Jul, 2007 7 commits
    • David S. Miller's avatar
      [SPARC]: Fix serial console device detection. · c73fcc84
      David S. Miller authored
      The current scheme works on static interpretation of text names, which
      is wrong.
      
      The output-device setting, for example, must be resolved via an alias
      or similar to a full path name to the console device.
      
      Paths also contain an optional set of 'options', which starts with a
      colon at the end of the path.  The option area is used to specify
      which of two serial ports ('a' or 'b') the path refers to when a
      device node drives multiple ports.  'a' is assumed if the option
      specification is missing.
      
      This was caught by the UltraSPARC-T1 simulator.  The 'output-device'
      property was set to 'ttya' and we didn't pick upon the fact that this
      is an OBP alias set to '/virtual-devices/console'.  Instead we saw it
      as the first serial console device, instead of the hypervisor console.
      
      The infrastructure is now there to take advantage of this to resolve
      the console correctly even in multi-head situations in fbcon too.
      
      Thanks to Greg Onufer for the bug report.
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      c73fcc84
    • Linus Torvalds's avatar
      Merge branch 'master' of ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb · d6f410bd
      Linus Torvalds authored
      * 'master' of ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb:
        V4L/DVB (5880): wm8775/wm8739: Fix memory leak when unloading module
        V4L/DVB (5877): radio-gemtek-pci: remove unused structure member
        V4L/DVB (5871): Conexant 2388x: check for kthread_run
        V4L/DVB (5869): Add check for valid control ID to v4l2_ctrl_next.
        V4L/DVB (5867): videodev2.h: add missing <sys/time.h> for userspace
        V4L/DVB (5866): ivtv: fix DMA timeout when capturing VBI + another stream
        V4L/DVB (5865): Remove usage of HZ on ivtv driver, replacing by msecs_to_jiffies
        V4L/DVB (5861): Use msecs_to_jiffies instead of HZ on bttv, cx88 and saa7134
        V4L/DVB (5860): Use msecs_to_jiffies instead of HZ on some webcam drivers
        V4L/DVB (5859): use msecs_to_jiffies on InfraRed RC5 timeout
        V4L/DVB (5858): Use msecs_to_jiffies instead of HZ on media/video I2C drivers
        V4L/DVB (5857): Use msecs_to_jiffies instead of HZ on radio drivers
        V4L/DVB (5855): ivtv: fix Kconfig typo and refer to the driver homepage.
        V4L/DVB (5854): ivtv: cleanup of driver messages
        V4L/DVB (5853): ivtv: add support to suppress high volume i2c debug messages.
        V4L/DVB (5852): ivtv: don't recompile needlessly
        V4L/DVB (5851): ivtv: fix missing I2C_ALGOBIT config option
        V4L/DVB (5850): ivtv: improve API command debugging
        V4L/DVB (5848): Av7110: fix typo
      d6f410bd
    • Linus Torvalds's avatar
      Un-ignore "vmlinux.lds.S" in .gitignore · eaf729c8
      Linus Torvalds authored
      We ignore all the generated files called "vmlinux*" from the top-level
      gitignore, but that also ends up catching a few files that we track, and
      that people do edit.  Notably the "vmlinux.lds.S" file, that each
      architecture has.
      
      You can always use "git add -f" to override the ignore file, but we
      might as well just make it explicit for this file.
      Bitten-by-and-tested-by: default avatarIngo Molnar <mingo@elte.hu>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      eaf729c8
    • Linus Torvalds's avatar
      Merge branch 'for-2.6.23' of master.kernel.org:/pub/scm/linux/kernel/git/arnd/cell-2.6 · ede13d81
      Linus Torvalds authored
      * 'for-2.6.23' of master.kernel.org:/pub/scm/linux/kernel/git/arnd/cell-2.6: (37 commits)
        [CELL] spufs: rework list management and associated locking
        [CELL] oprofile: add support to OProfile for profiling CELL BE SPUs
        [CELL] oprofile: enable SPU switch notification to detect currently active SPU tasks
        [CELL] spu_base: locking cleanup
        [CELL] cell: indexing of SPUs based on firmware vicinity properties
        [CELL] spufs: integration of SPE affinity with the scheduller
        [CELL] cell: add placement computation for scheduling of affinity contexts
        [CELL] spufs: extension of spu_create to support affinity definition
        [CELL] cell: add hardcoded spu vicinity information for QS20
        [CELL] cell: add vicinity information on spus
        [CELL] cell: add per BE structure with info about its SPUs
        [CELL] spufs: use find_first_bit() instead of sched_find_first_bit()
        [CELL] spufs: remove unused file argument from spufs_run_spu()
        [CELL] spufs: change decrementer restore timing
        [CELL] spufs: dont halt decrementer at restore step 47
        [CELL] spufs: limit saving MFC_CNTL bits
        [CELL] spufs: fix read and write for decr_status file
        [CELL] spufs: fix decr_status meanings
        [CELL] spufs: remove needless context save/restore code
        [CELL] spufs: fix array size of channel index
        ...
      ede13d81
    • Hans Verkuil's avatar
      V4L/DVB (5880): wm8775/wm8739: Fix memory leak when unloading module · 1b2232ab
      Hans Verkuil authored
      State struct was never freed.
      Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      1b2232ab
    • Trent Piepho's avatar
      V4L/DVB (5877): radio-gemtek-pci: remove unused structure member · 2fc9e2f7
      Trent Piepho authored
      The drivers reads the PCI subsystem ID into its state structure, but it's
      never used anywhere.
      Signed-off-by: default avatarTrent Piepho <xyzzy@speakeasy.org>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      2fc9e2f7
    • Cyrill Gorcunov's avatar
      V4L/DVB (5871): Conexant 2388x: check for kthread_run · 32b78de7
      Cyrill Gorcunov authored
      The patch adds checking of kthread_run return code and issues a message
      if it fails.
      Signed-off-by: default avatarCyrill Gorcunov <gorcunov@gmail.com>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      32b78de7