1. 20 2月, 2018 4 次提交
  2. 07 12月, 2017 2 次提交
  3. 12 10月, 2017 1 次提交
  4. 16 8月, 2017 1 次提交
  5. 04 8月, 2017 1 次提交
  6. 26 7月, 2017 1 次提交
  7. 14 7月, 2017 2 次提交
  8. 16 5月, 2017 1 次提交
  9. 29 4月, 2017 1 次提交
  10. 06 4月, 2017 1 次提交
  11. 30 3月, 2017 3 次提交
  12. 24 1月, 2017 1 次提交
  13. 26 12月, 2016 1 次提交
    • T
      ktime: Cleanup ktime_set() usage · 8b0e1953
      Thomas Gleixner 提交于
      ktime_set(S,N) was required for the timespec storage type and is still
      useful for situations where a Seconds and Nanoseconds part of a time value
      needs to be converted. For anything where the Seconds argument is 0, this
      is pointless and can be replaced with a simple assignment.
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      Cc: Peter Zijlstra <peterz@infradead.org>
      8b0e1953
  14. 01 12月, 2016 1 次提交
  15. 24 11月, 2016 1 次提交
  16. 16 11月, 2016 1 次提交
  17. 26 10月, 2016 9 次提交
  18. 04 10月, 2016 1 次提交
  19. 29 9月, 2016 1 次提交
  20. 22 9月, 2016 1 次提交
    • B
      drm/amdgpu: mark symbols static where possible · 4d446656
      Baoyou Xie 提交于
      We get 7 warnings when building kernel with W=1:
      drivers/gpu/drm/amd/amdgpu/amdgpu_device.c:1990:5: warning: no previous prototype for 'amdgpu_pre_soft_reset' [-Wmissing-prototypes]
      drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.c:1548:5: warning: no previous prototype for 'amdgpu_connector_virtual_dpms' [-Wmissing-prototypes]
      drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.c:1560:5: warning: no previous prototype for 'amdgpu_connector_virtual_set_property' [-Wmissing-prototypes]
      drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:330:5: warning: no previous prototype for 'amdgpu_cs_list_validate' [-Wmissing-prototypes]
      drivers/gpu/drm/amd/amdgpu/dce_virtual.c:98:6: warning: no previous prototype for 'dce_virtual_stop_mc_access' [-Wmissing-prototypes]
      drivers/gpu/drm/amd/amdgpu/dce_virtual.c:130:6: warning: no previous prototype for 'dce_virtual_resume_mc_access' [-Wmissing-prototypes]
      drivers/gpu/drm/amd/amdgpu/dce_virtual.c:136:6: warning: no previous prototype for 'dce_virtual_set_vga_render_state' [-Wmissing-prototypes]
      
      In fact, all of the functions are only used in the file
      in which they are declared and don't need a declaration,
      but can be made static.
      
      So this patch marks both functions with 'static'.
      Reviewed-by: NChristian König <christian.koenig@amd.com>
      Signed-off-by: NBaoyou Xie <baoyou.xie@linaro.org>
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      4d446656
  21. 15 9月, 2016 1 次提交
  22. 18 8月, 2016 1 次提交
  23. 11 8月, 2016 1 次提交
  24. 09 8月, 2016 2 次提交