Commit affa22b5 authored by Jani Nikula's avatar Jani Nikula

drm/i915: fix documentation build warnings

Just a straightforward bag of fixes for a clean htmldocs build.
Reviewed-by: default avatarMika Kuoppala <mika.kuoppala@linux.intel.com>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190605095657.23601-2-jani.nikula@intel.com
parent 8a6f43d4
...@@ -475,12 +475,6 @@ i915_context_create and i915_context_free ...@@ -475,12 +475,6 @@ i915_context_create and i915_context_free
.. kernel-doc:: drivers/gpu/drm/i915/i915_trace.h .. kernel-doc:: drivers/gpu/drm/i915/i915_trace.h
:doc: i915_context_create and i915_context_free tracepoints :doc: i915_context_create and i915_context_free tracepoints
switch_mm
---------
.. kernel-doc:: drivers/gpu/drm/i915/i915_trace.h
:doc: switch_mm tracepoint
Perf Perf
==== ====
......
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
* REG_FIELD_PREP() - Prepare a u32 bitfield value * REG_FIELD_PREP() - Prepare a u32 bitfield value
* @__mask: shifted mask defining the field's length and position * @__mask: shifted mask defining the field's length and position
* @__val: value to put in the field * @__val: value to put in the field
*
* Local copy of FIELD_PREP() to generate an integer constant expression, force * Local copy of FIELD_PREP() to generate an integer constant expression, force
* u32 and for consistency with REG_FIELD_GET(), REG_BIT() and REG_GENMASK(). * u32 and for consistency with REG_FIELD_GET(), REG_BIT() and REG_GENMASK().
* *
......
...@@ -40,6 +40,8 @@ ...@@ -40,6 +40,8 @@
enum i915_cache_level; enum i915_cache_level;
/** /**
* DOC: Virtual Memory Address
*
* A VMA represents a GEM BO that is bound into an address space. Therefore, a * A VMA represents a GEM BO that is bound into an address space. Therefore, a
* VMA's presence cannot be guaranteed before binding, or after unbinding the * VMA's presence cannot be guaranteed before binding, or after unbinding the
* object into/from the address space. * object into/from the address space.
......
...@@ -500,6 +500,8 @@ enum guc_log_buffer_type { ...@@ -500,6 +500,8 @@ enum guc_log_buffer_type {
}; };
/** /**
* struct guc_log_buffer_state - GuC log buffer state
*
* Below state structure is used for coordination of retrieval of GuC firmware * Below state structure is used for coordination of retrieval of GuC firmware
* logs. Separate state is maintained for each log buffer type. * logs. Separate state is maintained for each log buffer type.
* read_ptr points to the location where i915 read last in log buffer and * read_ptr points to the location where i915 read last in log buffer and
......
...@@ -391,8 +391,6 @@ static intel_wakeref_t __intel_runtime_pm_get(struct drm_i915_private *i915, ...@@ -391,8 +391,6 @@ static intel_wakeref_t __intel_runtime_pm_get(struct drm_i915_private *i915,
* asynchronous PM management from display code) and ensures that it is powered * asynchronous PM management from display code) and ensures that it is powered
* up. Raw references are not considered during wakelock assert checks. * up. Raw references are not considered during wakelock assert checks.
* *
* Returns:
* True when the power domain is enabled, false otherwise.
* Any runtime pm reference obtained by this function must have a symmetric * Any runtime pm reference obtained by this function must have a symmetric
* call to intel_runtime_pm_put_raw() to release the reference again. * call to intel_runtime_pm_put_raw() to release the reference again.
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment