1. 30 7月, 2008 1 次提交
  2. 29 7月, 2008 13 次提交
  3. 28 7月, 2008 7 次提交
  4. 27 7月, 2008 9 次提交
    • M
    • D
      [ARM] 5179/1: Replace obsolete IRQT_* and __IRQT_* values with IRQ_TYPE_* · 6cab4860
      Dmitry Baryshkov 提交于
      IRQT_* and __IRQT_* were obsoleted long ago by patch [3692/1].
      Remove them completely. Sed script for the reference:
      
      s/__IRQT_RISEDGE/IRQ_TYPE_EDGE_RISING/g
      s/__IRQT_FALEDGE/IRQ_TYPE_EDGE_FALLING/g
      s/__IRQT_LOWLVL/IRQ_TYPE_LEVEL_LOW/g
      s/__IRQT_HIGHLVL/IRQ_TYPE_LEVEL_HIGH/g
      s/IRQT_RISING/IRQ_TYPE_EDGE_RISING/g
      s/IRQT_FALLING/IRQ_TYPE_EDGE_FALLING/g
      s/IRQT_BOTHEDGE/IRQ_TYPE_EDGE_BOTH/g
      s/IRQT_LOW/IRQ_TYPE_LEVEL_LOW/g
      s/IRQT_HIGH/IRQ_TYPE_LEVEL_HIGH/g
      s/IRQT_PROBE/IRQ_TYPE_PROBE/g
      s/IRQT_NOEDGE/IRQ_TYPE_NONE/g
      Signed-off-by: NDmitry Baryshkov <dbaryshkov@gmail.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      6cab4860
    • N
      ALSA: Allow to force model to intel-mac-v3 in snd_hda_intel (sigmatel). · 536319af
      Nicolas Boichat 提交于
      Currently, even if you pass model=intel-mac-v3 as a module parameter to
      snd_hda_intel, the function patch_stac922x (patch_sigmatel.c) will still
      try to auto-detect the model type. This is a problem on my MacBook Pro 1st
      generation, which needs intel-mac-v3, but sometimes incorrectly reports
      0x00000100 as subsystem id, which causes the switch in patch_stac922x to
      select intel-mac-v4.
      
      To fix this, I added a new model called intel-mac-auto, so in case no
      module parameter is passed, and an Intel Mac board is detected, the
      model will be automatically detected, while no detection will be done
      if the model is forced to intel-mac-v3.
      
      This problem has been around for quite a while, and I used to fix it
      by moving the case statement for 0x00000100 in patch_stac922x so that
      intel-mac-v3 is chosen.
      
      Another way to fix the problem would be to check if a module parameter
      was set directly in patch_stac922x, using something like this:
      if (spec->board_config == STAC_INTEL_MAC_V3 &&
      	!codec->bus->modelname) {
      
      But I think it is less elegant (if you prefer that way, I can prepare a
      patch).
      Signed-off-by: NNicolas Boichat <nicolas@boichat.ch>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      536319af
    • K
      Add mISDN driver · e4ac9bc1
      Karsten Keil 提交于
      mISDN is a new modular ISDN driver, in the long term it should replace
      the old I4L driver architecture for passiv ISDN cards.
      Signed-off-by: NKarsten Keil <kkeil@suse.de>
      e4ac9bc1
    • M
      Documentation cleanup: trivial misspelling, punctuation, and grammar corrections. · d9195881
      Matt LaPlante 提交于
      Cc: Randy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      d9195881
    • B
      omfs: add filesystem documentation · a14e4b57
      Bob Copeland 提交于
      These patches add the Optimized MPEG Filesystem, a proprietary filesystem used
      by the embedded devices Rio Karma and ReplayTV, which are no longer
      manufactured.  This filesystem module enables people to access files on these
      devices.
      
      This patch:
      
      OMFS is a proprietary filesystem created for the ReplayTV and also used by the
      Rio Karma.  It uses hash tables with unordered, unbounded lists in each bucket
      for directories, extents for data blocks, 64-bit addressing for blocks, with
      up to 8K blocks (only 2K of a given block is ever used for metadata, so the FS
      still works with 4K pages).
      
      Document the filesystem usage and structures.
      Signed-off-by: NBob Copeland <me@bobcopeland.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      a14e4b57
    • E
      relay: add buffer-only channels; useful for early logging · 20d8b67c
      Eduard - Gabriel Munteanu 提交于
      Allows one to create and use a channel with no associated files.  Files
      can be initialized later.  This is useful in scenarios such as logging in
      early code, before VFS is up.  Therefore, such channels can be created and
      used as soon as kmem_cache_init() completed.
      
      This is needed by kmemtrace to do tracing in early kernel code.
      
      [kosaki.motohiro@jp.fujitsu.com: build fix]
      Signed-off-by: NEduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
      Cc: Tom Zanussi <tzanussi@gmail.com>
      Signed-off-by: NKOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      20d8b67c
    • F
      dma-mapping: add the device argument to dma_mapping_error() · 8d8bb39b
      FUJITA Tomonori 提交于
      Add per-device dma_mapping_ops support for CONFIG_X86_64 as POWER
      architecture does:
      
      This enables us to cleanly fix the Calgary IOMMU issue that some devices
      are not behind the IOMMU (http://lkml.org/lkml/2008/5/8/423).
      
      I think that per-device dma_mapping_ops support would be also helpful for
      KVM people to support PCI passthrough but Andi thinks that this makes it
      difficult to support the PCI passthrough (see the above thread).  So I
      CC'ed this to KVM camp.  Comments are appreciated.
      
      A pointer to dma_mapping_ops to struct dev_archdata is added.  If the
      pointer is non NULL, DMA operations in asm/dma-mapping.h use it.  If it's
      NULL, the system-wide dma_ops pointer is used as before.
      
      If it's useful for KVM people, I plan to implement a mechanism to register
      a hook called when a new pci (or dma capable) device is created (it works
      with hot plugging).  It enables IOMMUs to set up an appropriate
      dma_mapping_ops per device.
      
      The major obstacle is that dma_mapping_error doesn't take a pointer to the
      device unlike other DMA operations.  So x86 can't have dma_mapping_ops per
      device.  Note all the POWER IOMMUs use the same dma_mapping_error function
      so this is not a problem for POWER but x86 IOMMUs use different
      dma_mapping_error functions.
      
      The first patch adds the device argument to dma_mapping_error.  The patch
      is trivial but large since it touches lots of drivers and dma-mapping.h in
      all the architecture.
      
      This patch:
      
      dma_mapping_error() doesn't take a pointer to the device unlike other DMA
      operations.  So we can't have dma_mapping_ops per device.
      
      Note that POWER already has dma_mapping_ops per device but all the POWER
      IOMMUs use the same dma_mapping_error function.  x86 IOMMUs use device
      argument.
      
      [akpm@linux-foundation.org: fix sge]
      [akpm@linux-foundation.org: fix svc_rdma]
      [akpm@linux-foundation.org: build fix]
      [akpm@linux-foundation.org: fix bnx2x]
      [akpm@linux-foundation.org: fix s2io]
      [akpm@linux-foundation.org: fix pasemi_mac]
      [akpm@linux-foundation.org: fix sdhci]
      [akpm@linux-foundation.org: build fix]
      [akpm@linux-foundation.org: fix sparc]
      [akpm@linux-foundation.org: fix ibmvscsi]
      Signed-off-by: NFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
      Cc: Muli Ben-Yehuda <muli@il.ibm.com>
      Cc: Andi Kleen <andi@firstfloor.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Avi Kivity <avi@qumranet.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      8d8bb39b
    • D
      V4L/DVB (8492): Add support for the ATI TV Wonder HD 600 · e14b3658
      Devin Heitmueller 提交于
      em28xx-cards.c
      em28xx-dvb.c
      em28xx.h
       - Add support for the ATI TV Wonder HD 600, based on a 94 email exchange and
         USB traces provided by Ronnie Bailey
      
         Thanks to Ronnie Bailey <purevw@wtxs.net> for testing the changes
      Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
      e14b3658
  5. 26 7月, 2008 10 次提交