03 May, 2013

1 commit


29 Apr, 2013

1 commit


07 Dec, 2012

1 commit


20 Aug, 2012

2 commits

  • In the first case, the second test of whether retval is negative is
    redundant. It is dropped and the previous and subsequent tests are
    combined.

    In the second case, add an initialization of retval on failure of ioremap.

    A simplified version of the semantic match that finds this problem is as
    follows: (http://coccinelle.lip6.fr/)

    //
    (
    if@p1 (\(ret < 0\|ret != 0\))
    { ... return ret; }
    |
    ret@p1 = 0
    )
    ... when != ret = e1
    when != &ret
    *if(...)
    {
    ... when != ret = e2
    when forall
    return ret;
    }

    //

    Signed-off-by: Julia Lawall
    Signed-off-by: Takashi Iwai

    Julia Lawall
     
  • Initialize retval before returning from a failed call to ioremap.

    A simplified version of the semantic match that finds this problem is as
    follows: (http://coccinelle.lip6.fr/)

    //
    (
    if@p1 (\(ret < 0\|ret != 0\))
    { ... return ret; }
    |
    ret@p1 = 0
    )
    ... when != ret = e1
    when != &ret
    *if(...)
    {
    ... when != ret = e2
    when forall
    return ret;
    }

    //

    Signed-off-by: Julia Lawall
    Signed-off-by: Takashi Iwai

    Julia Lawall
     

09 Aug, 2012

1 commit


03 Jul, 2012

1 commit


02 Jul, 2012

1 commit


11 May, 2012

1 commit


22 Feb, 2012

1 commit


18 Jan, 2012

1 commit

  • * 'next' of git://git.infradead.org/users/vkoul/slave-dma: (53 commits)
    ARM: mach-shmobile: specify CHCLR registers on SH7372
    dma: shdma: fix runtime PM: clear channel buffers on reset
    dma/imx-sdma: save irq flags when use spin_lock in sdma_tx_submit
    dmaengine/ste_dma40: clear LNK on channel startup
    dmaengine: intel_mid_dma: remove legacy pm interface
    ASoC: mxs: correct 'direction' of device_prep_dma_cyclic
    dmaengine: intel_mid_dma: error path fix
    dmaengine: intel_mid_dma: locking and freeing fixes
    mtd: gpmi-nand: move to dma_transfer_direction
    mtd: fix compile error for gpmi-nand
    mmc: mxs-mmc: fix the dma_transfer_direction migration
    dmaengine: add DMA_TRANS_NONE to dma_transfer_direction
    dma: mxs-dma: Don't use CLKGATE bits in CTRL0 to disable DMA channels
    dma: mxs-dma: make mxs_dma_prep_slave_sg() multi user safe
    dma: mxs-dma: Always leave mxs_dma_init() with the clock disabled.
    dma: mxs-dma: fix a typo in comment
    DMA: PL330: Remove pm_runtime_xxx calls from pl330 probe/remove
    video i.MX IPU: Fix display connections
    i.MX IPU DMA: Fix wrong burstsize settings
    dmaengine/ste_dma40: allow fixed physical channel
    ...

    Fix up conflicts in drivers/dma/{Kconfig,mxs-dma.c,pl330.c}

    The conflicts looked pretty trivial, but I'll ask people to verify them.

    Linus Torvalds
     

19 Dec, 2011

1 commit


31 Oct, 2011

1 commit


11 Jul, 2011

1 commit


28 Jun, 2011

1 commit


10 Jun, 2011

1 commit


26 Jan, 2011

1 commit


22 Nov, 2010

2 commits


08 Jun, 2010

1 commit


26 Mar, 2010

2 commits


06 Apr, 2009

10 commits


05 Feb, 2009

2 commits

  • This patch adds ALSA support for the AC97 controller found on Atmel
    AVR32 devices.

    Tested on ATSTK1006 + ATSTK1000 with a development board with a AC97
    codec.

    Signed-off-by: Hans-Christian Egtvedt
    Signed-off-by: Takashi Iwai

    Hans-Christian Egtvedt
     
  • This patch adds ALSA support for the Audio Bistream DAC found on Atmel
    AVR32 devices. The ABDAC is an Atmel IP which might show up on AT91
    devices in the future, hence making a generic driver which can be
    utilized by AT91 arch if needed.

    Datasheet describing the ABDAC peripheral is available in the AT32AP7000
    datasheet, http://www.atmel.com/dyn/products/datasheets.asp?family_id=682

    Tested on ATSTK1006 + ATSTK1000 with a class D amplifier stage.

    Signed-off-by: Hans-Christian Egtvedt
    Signed-off-by: Takashi Iwai

    Hans-Christian Egtvedt