linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH (set 2) 00/19] Rid W=1 warnings from GPU
@ 2023-03-31  9:25 Lee Jones
  2023-03-31  9:25 ` [PATCH 01/19] drm/i915/i915_scatterlist: Fix kerneldoc formatting issue - missing '@' Lee Jones
                   ` (18 more replies)
  0 siblings, 19 replies; 28+ messages in thread
From: Lee Jones @ 2023-03-31  9:25 UTC (permalink / raw)
  To: lee; +Cc: linux-kernel

This set is part of a larger effort attempting to clean-up W=1
kernel builds, which are currently overwhelmingly riddled with
niggly little warnings.

Lee Jones (19):
  drm/i915/i915_scatterlist: Fix kerneldoc formatting issue - missing
    '@'
  drm/i915/intel_region_ttm: Provide missing description for 'offset'
    param
  drm/radeon/radeon_ttm: Remove unused variable 'rbo' from
    radeon_bo_move()
  drm/i915/display/intel_display_debugfs: Fix incorrect param naming for
    'intel_connector'
  drm/i915/gt/intel_engine_cs: Fix a couple of incorrectly named
    functions
  drm/i915/gt/intel_rps: Demote a kerneldoc abuse for
    ips_ping_for_i915_load()
  drm/i915/gem/i915_gem_create: Provide the function names for proper
    kerneldoc headers
  drm/i915/gem/i915_gem_domain: Provide function names to complete
    proper kerneldoc
  drm/i915/gem/i915_gem_ttm_pm: Provide a couple of missing descriptions
    for 'flags' and remove some superfluous ones
  drm/i915/gem/i915_gem_ttm: Demote half-filled kerneldoc
  drm/i915/gem/i915_gem_ttm_move: Provide a couple of missing
    descriptions for 'num_pages' and 'ctx'
  drm/i915/gem/i915_gem_wait: Provide function name to validate the
    kerneldoc header
  drm/i915/gem/i915_gem_object: Demote non-kerneldoc header with no
    param descriptions
  drm/i915/i915_gem: Provide function names to complete the expected
    kerneldoc format
  drm/i915/gt/uc/intel_guc_hwconfig: Demote a few non-conforming
    kerneldoc headers
  drm/i915/i915_vma: Provide one missing param and demote another
    non-kerneldoc header
  drm/i915/display/intel_display_power: Fix incorrectly documented
    function __intel_display_power_put_async()
  drm/amd/amdgpu/sdma_v6_0: Demote a bunch of half-completed function
    headers
  drm/i915/display/intel_wm: Fix a little doc-rot in
    intel_update_watermarks()

 drivers/gpu/drm/amd/amdgpu/sdma_v6_0.c             |  8 ++++----
 .../gpu/drm/i915/display/intel_display_debugfs.c   |  2 +-
 drivers/gpu/drm/i915/display/intel_display_power.c |  2 +-
 drivers/gpu/drm/i915/display/intel_wm.c            |  2 +-
 drivers/gpu/drm/i915/gem/i915_gem_create.c         |  7 ++++---
 drivers/gpu/drm/i915/gem/i915_gem_domain.c         | 14 +++++++++-----
 drivers/gpu/drm/i915/gem/i915_gem_object.c         |  2 +-
 drivers/gpu/drm/i915/gem/i915_gem_ttm.c            |  2 +-
 drivers/gpu/drm/i915/gem/i915_gem_ttm_move.c       |  3 +++
 drivers/gpu/drm/i915/gem/i915_gem_ttm_pm.c         |  5 ++---
 drivers/gpu/drm/i915/gem/i915_gem_wait.c           |  2 +-
 drivers/gpu/drm/i915/gt/intel_engine_cs.c          |  6 +++---
 drivers/gpu/drm/i915/gt/intel_rps.c                |  2 +-
 drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c    |  6 +++---
 drivers/gpu/drm/i915/i915_gem.c                    |  8 ++++----
 drivers/gpu/drm/i915/i915_scatterlist.c            |  2 +-
 drivers/gpu/drm/i915/i915_vma.c                    |  3 ++-
 drivers/gpu/drm/i915/intel_region_ttm.c            |  1 +
 drivers/gpu/drm/radeon/radeon_ttm.c                |  2 --
 19 files changed, 43 insertions(+), 36 deletions(-)

--
2.40.0.348.gf938b09366-goog


^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2023-04-05 16:41 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-31  9:25 [PATCH (set 2) 00/19] Rid W=1 warnings from GPU Lee Jones
2023-03-31  9:25 ` [PATCH 01/19] drm/i915/i915_scatterlist: Fix kerneldoc formatting issue - missing '@' Lee Jones
2023-04-03 15:35   ` Jani Nikula
2023-04-03 16:20     ` Lee Jones
2023-04-04  9:44       ` Jani Nikula
2023-04-05 13:45         ` Lee Jones
2023-04-05 16:06           ` Jani Nikula
2023-04-05 16:41             ` Lee Jones
2023-03-31  9:25 ` [PATCH 02/19] drm/i915/intel_region_ttm: Provide missing description for 'offset' param Lee Jones
2023-03-31  9:25 ` [PATCH 03/19] drm/radeon/radeon_ttm: Remove unused variable 'rbo' from radeon_bo_move() Lee Jones
2023-03-31  9:25 ` [PATCH 04/19] drm/i915/display/intel_display_debugfs: Fix incorrect param naming for 'intel_connector' Lee Jones
2023-03-31  9:25 ` [PATCH 05/19] drm/i915/gt/intel_engine_cs: Fix a couple of incorrectly named functions Lee Jones
2023-03-31  9:25 ` [PATCH 06/19] drm/i915/gt/intel_rps: Demote a kerneldoc abuse for ips_ping_for_i915_load() Lee Jones
2023-03-31  9:25 ` [PATCH 07/19] drm/i915/gem/i915_gem_create: Provide the function names for proper kerneldoc headers Lee Jones
2023-03-31 15:18   ` kernel test robot
2023-03-31  9:25 ` [PATCH 08/19] drm/i915/gem/i915_gem_domain: Provide function names to complete proper kerneldoc Lee Jones
2023-03-31  9:25 ` [PATCH 09/19] drm/i915/gem/i915_gem_ttm_pm: Provide a couple of missing descriptions for 'flags' and remove some superfluous ones Lee Jones
2023-03-31  9:25 ` [PATCH 10/19] drm/i915/gem/i915_gem_ttm: Demote half-filled kerneldoc Lee Jones
2023-03-31  9:25 ` [PATCH 11/19] drm/i915/gem/i915_gem_ttm_move: Provide a couple of missing descriptions for 'num_pages' and 'ctx' Lee Jones
2023-03-31  9:26 ` [PATCH 12/19] drm/i915/gem/i915_gem_wait: Provide function name to validate the kerneldoc header Lee Jones
2023-03-31  9:26 ` [PATCH 13/19] drm/i915/gem/i915_gem_object: Demote non-kerneldoc header with no param descriptions Lee Jones
2023-03-31  9:26 ` [PATCH 14/19] drm/i915/i915_gem: Provide function names to complete the expected kerneldoc format Lee Jones
2023-03-31 17:52   ` kernel test robot
2023-03-31  9:26 ` [PATCH 15/19] drm/i915/gt/uc/intel_guc_hwconfig: Demote a few non-conforming kerneldoc headers Lee Jones
2023-03-31  9:26 ` [PATCH 16/19] drm/i915/i915_vma: Provide one missing param and demote another non-kerneldoc header Lee Jones
2023-03-31  9:26 ` [PATCH 17/19] drm/i915/display/intel_display_power: Fix incorrectly documented function __intel_display_power_put_async() Lee Jones
2023-03-31  9:26 ` [PATCH 18/19] drm/amd/amdgpu/sdma_v6_0: Demote a bunch of half-completed function headers Lee Jones
2023-03-31  9:26 ` [PATCH 19/19] drm/i915/display/intel_wm: Fix a little doc-rot in intel_update_watermarks() Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).