1. 05 12月, 2016 1 次提交
  2. 24 11月, 2016 1 次提交
  3. 17 11月, 2016 1 次提交
  4. 16 11月, 2016 2 次提交
  5. 11 11月, 2016 5 次提交
  6. 09 11月, 2016 1 次提交
    • A
      drm/amd/powerplay: return false instead of -EINVAL · f20024d8
      Andrew Shadura 提交于
      Returning -EINVAL from a bool-returning function
      phm_check_smc_update_required_for_display_configuration has an unexpected
      effect of returning true, which is probably not what was intended.
      Replace -EINVAL by false.
      
      The only place this function is called from is
      psm_adjust_power_state_dynamic in
      drivers/gpu/drm/amd/powerplay/eventmgr/psm.c:106:
      
      	if (!equal || phm_check_smc_update_required_for_display_configuration(hwmgr)) {
      		phm_apply_state_adjust_rules(hwmgr, requested, pcurrent);
      		phm_set_power_state(hwmgr, &pcurrent->hardware, &requested->hardware);
      		hwmgr->current_ps = requested;
      	}
      
      It seems to expect a boolean value here.
      
      This issue has been found using the following Coccinelle semantic patch
      written by Peter Senna Tschudin:
      <smpl>
      @@
      identifier f;
      constant C;
      typedef bool;
      @@
      bool f (...){
      <+...
      * return -C;
      ...+>
      }
      </smpl>
      Reviewed-by: NAlex Deucher <alexander.deucher@amd.com>
      Signed-off-by: NAndrew Shadura <andrew.shadura@collabora.co.uk>
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      f20024d8
  7. 08 11月, 2016 2 次提交
  8. 01 11月, 2016 4 次提交
  9. 31 10月, 2016 1 次提交
  10. 29 10月, 2016 2 次提交
  11. 28 10月, 2016 2 次提交
  12. 27 10月, 2016 1 次提交
  13. 26 10月, 2016 2 次提交
  14. 25 10月, 2016 6 次提交
  15. 21 10月, 2016 9 次提交