1. 17 11月, 2014 4 次提交
    • R
      drm/msm/hdmi: refactor bind/init · 067fef37
      Rob Clark 提交于
      Split up hdmi_init() into hdmi_init() (done at hdmi sub-device
      bind/probe time) and hdmi_modeset_init() done from master driver's
      modeset_init().
      
      Anything that can fail due to dependencies on other drivers which
      may be missing or not probed yet should go in hdmi_init(), so that
      devm error/cleanup paths work properly.
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      067fef37
    • R
      drm/msm: update generated headers · bc00ae02
      Rob Clark 提交于
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      bc00ae02
    • R
      drm/msm/adreno: slight init order cleanup · 0122f96f
      Rob Clark 提交于
      Move anything that can fail after call to base class msm_gpu_init().
      This way, if we fail, active_list has already been initialized so we
      don't trip 'WARN_ON(!list_empty(&gpu->active_list))' in
      msm_gpu_cleanup().
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      0122f96f
    • R
      drm/msm: select REGULATOR · b7bbd640
      Rob Clark 提交于
      Fixes a potential error, spotted by Felipe with randconfig:
      
      -----
      drivers/gpu/drm/msm/mdp/mdp4/mdp4_kms.c: In function ‘mdp4_kms_init’:
      drivers/gpu/drm/msm/mdp/mdp4/mdp4_kms.c:384:2: error: implicit declaration \
              of function ‘devm_regulator_get_exclusive’ [-Werror=implicit-function-declaration]
        mdp4_kms->vdd = devm_regulator_get_exclusive(&pdev->dev, "vdd");
        ^
      drivers/gpu/drm/msm/mdp/mdp4/mdp4_kms.c:384:16: error: assignment makes \
              pointer from integer without a cast [-Werror]
        mdp4_kms->vdd = devm_regulator_get_exclusive(&pdev->dev, "vdd");
                      ^
      -----
      
      Also add a brief comment explaining the use of _get_exclusive()
      Reported-by: NFelipe Balbi <balbi@ti.com>
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      b7bbd640
  2. 15 11月, 2014 7 次提交
  3. 14 11月, 2014 1 次提交
  4. 13 11月, 2014 28 次提交