1. 19 12月, 2013 1 次提交
  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. 31 10月, 2013 1 次提交
    • T
      drm/tegra: Move subdevice infrastructure to host1x · 776dc384
      Thierry Reding 提交于
      The Tegra DRM driver currently uses some infrastructure to defer the DRM
      core initialization until all required devices have registered. The same
      infrastructure can potentially be used by any other driver that requires
      more than a single sub-device of the host1x module.
      
      Make the infrastructure more generic and keep only the DRM specific code
      in the DRM part of the driver. Eventually this will make it easy to move
      the DRM driver part back to the DRM subsystem.
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      776dc384