1. 13 11月, 2013 8 次提交
  2. 12 11月, 2013 5 次提交
  3. 31 10月, 2013 2 次提交
    • M
      dma: pl330: Remove unnecessary amba_set_drvdata() · 600d5258
      Michal Simek 提交于
      Driver core clears the driver data to NULL after device_release
      or on probe failure, so just remove it from here.
      
      Driver core change:
      "device-core: Ensure drvdata = NULL when no driver is bound"
      (sha1: 0998d063)
      Signed-off-by: NMichal Simek <michal.simek@xilinx.com>
      Signed-off-by: NVinod Koul <vinod.koul@intel.com>
      600d5258
    • R
      dmaengine: imx-dma: fix format warnings · ac806a1c
      Russell King 提交于
      drivers/dma/imx-dma.c:575:3: warning: format '%x' expects argument of type 'unsigned int', but argument 6 has type 'dma_addr_t'
      drivers/dma/imx-dma.c:575:3: warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t'
      drivers/dma/imx-dma.c:589:4: warning: format '%x' expects argument of type 'unsigned int', but argument 9 has type 'dma_addr_t'
      drivers/dma/imx-dma.c:599:4: warning: format '%x' expects argument of type 'unsigned int', but argument 9 has type 'dma_addr_t'
      drivers/dma/imx-dma.c:929:2: warning: format '%x' expects argument of type 'unsigned int', but argument 6 has type 'dma_addr_t'
      drivers/dma/imx-dma.c:929:2: warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t'
      drivers/dma/imx-dma.c:959:2: warning: format '%x' expects argument of type 'unsigned int', but argument 6 has type 'dma_addr_t'
      drivers/dma/imx-dma.c:959:2: warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t'
      
      We can't use the %pa format for these because this relates to phys_addr_t,
      and dma_addr_t can be a different size.  So, fix these by converting them
      to %llx and casting the dma_addr_t to always be unsigned long long.
      
      While we're here, also use %zu for size_t.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NVinod Koul <vinod.koul@intel.com>
      ac806a1c
  4. 30 10月, 2013 1 次提交
  5. 25 10月, 2013 24 次提交