diff options
author | 2023-04-05 13:41:42 +0300 | |
---|---|---|
committer | 2023-04-06 15:39:26 +0300 | |
commit | b358793c3bf231c455c55e0173256a86483997a8 (patch) | |
tree | 61594c326cdb4e4d4c24233b148b79bef9f424b2 | |
parent | drm/i915/tc: demote a kernel-doc comment to a regular comment (diff) | |
download | wireguard-linux-b358793c3bf231c455c55e0173256a86483997a8.tar.xz wireguard-linux-b358793c3bf231c455c55e0173256a86483997a8.zip |
drm/i915/wakeref: fix kernel-doc comment
Fix the warning:
drivers/gpu/drm/i915/intel_wakeref.h:118: warning: expecting prototype
for intel_wakeref_get_if_in_use(). Prototype was for
intel_wakeref_get_if_active() instead
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230405104142.766598-2-jani.nikula@intel.com
-rw-r--r-- | drivers/gpu/drm/i915/intel_wakeref.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_wakeref.h b/drivers/gpu/drm/i915/intel_wakeref.h index 71b8a63f6f10..0b6b4852ab23 100644 --- a/drivers/gpu/drm/i915/intel_wakeref.h +++ b/drivers/gpu/drm/i915/intel_wakeref.h @@ -105,7 +105,7 @@ __intel_wakeref_get(struct intel_wakeref *wf) } /** - * intel_wakeref_get_if_in_use: Acquire the wakeref + * intel_wakeref_get_if_active: Acquire the wakeref * @wf: the wakeref * * Acquire a hold on the wakeref, but only if the wakeref is already |