1. 19 12月, 2013 7 次提交
  2. 03 12月, 2013 1 次提交
    • T
      gpu: host1x: Fix a few sparse warnings · d24b2898
      Thierry Reding 提交于
      Include the bus.h header, so that various function declarations are
      visible in the source file that implements those functions. This keeps
      sparse from suggesting that they should be made static.
      
      Make the host1x_bus_type variable static since it isn't used globally.
      
      Finally replace the slightly unsafe dev_set_name(dev, name) by the more
      secure dev_set_name(dev, "%s", name).
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      d24b2898
  3. 28 11月, 2013 1 次提交
    • O
      gpu: host1x: Silence a few warnings with LPAE=y · 43dd5554
      Olof Johansson 提交于
      When building with LPAE=y (64-bit dma_addr_t), the following warnings are seen:
      
      drivers/gpu/host1x/hw/cdma_hw.c:57:3: warning: format '%x' expects
        argument of type 'unsigned int', but argument 5 has type 'dma_addr_t'
      
      drivers/gpu/host1x/hw/debug_hw.c:167:10: warning: format '%x' expects
        argument of type 'unsigned int', but argument 3 has type 'dma_addr_t'
      
      The agreed-to solution for this is upcast to u64 and using %llx.
      Signed-off-by: NOlof Johansson <olof@lixom.net>
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      43dd5554
  4. 31 10月, 2013 25 次提交
  5. 12 10月, 2013 1 次提交
    • D
      drm: Add separate Kconfig option for fbdev helpers · 92b6f89f
      Daniel Vetter 提交于
      For drivers which might want to disable fbdev legacy support.
      
      Select the new option in all drivers for now, so this shouldn't result
      in any change. Drivers need some work anyway to make fbdev support
      optional (if they have it implemented, that is), so the recommended
      way to expose this is by adding per-driver options. At least as long
      as most drivers don't support disabling the fbdev support.
      
      v2: Update for new drm drivers msm and rcar-du. Note that Rob's msm
      driver can already take advantage of this, which allows us to build
      msm without any fbdev depencies in the kernel!
      
      v3: Move the MODULE_* stuff from the fbdev helper file to
      drm_crtc_helper.c.
      
      Cc: David Herrmann <dh.herrmann@gmail.com>
      Cc: Rob Clark <robdclark@gmail.com>
      Reviewed-by: NRob Clark <robdclark@gmail.com>
      Acked-by: NDave Airlie <airlied@linux.ie>
      Reviewed-by: NChon Ming Lee <chon.ming.lee@intel.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      92b6f89f
  6. 09 10月, 2013 1 次提交
  7. 03 9月, 2013 3 次提交
  8. 02 9月, 2013 1 次提交