linux-kernel-mentees.lists.linuxfoundation.org archive mirror
 help / color / mirror / Atom feed
* [Linux-kernel-mentees] [PATCH] drm: i915: fix kernel-doc warnings in i915_drv.h
@ 2019-10-01  0:58 dwlsalmeida
  2019-10-01  0:58 ` Daniel W. S. Almeida
  0 siblings, 1 reply; 2+ messages in thread
From: dwlsalmeida @ 2019-10-01  0:58 UTC (permalink / raw)


From: "Daniel W. S. Almeida" <dwlsalmeida at gmail.com>

The warnings were generated due to missing or misplaced characters.
Now fixed. No other change in content.

Signed-off-by: Daniel W. S. Almeida <dwlsalmeida at gmail.com>
---
 drivers/gpu/drm/i915/i915_drv.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 772154e4073e..941f60304932 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -1126,7 +1126,7 @@ struct i915_perf_stream {
 	struct i915_oa_config *oa_config;
 
 	/**
-	 * The OA context specific information.
+	 * @pinned_ctx: The OA context specific information.
 	 */
 	struct intel_context *pinned_ctx;
 	u32 specific_ctx_id;
@@ -1140,7 +1140,7 @@ struct i915_perf_stream {
 	int period_exponent;
 
 	/**
-	 * State of the OA buffer.
+	 * @oa_buffer: State of the OA buffer.
 	 */
 	struct {
 		struct i915_vma *vma;
@@ -1150,7 +1150,7 @@ struct i915_perf_stream {
 		int format_size;
 		int size_exponent;
 
-		/**
+		/*
 		 * Locks reads and writes to all head/tail state
 		 *
 		 * Consider: the head and tail pointer state needs to be read
@@ -1172,7 +1172,7 @@ struct i915_perf_stream {
 		 */
 		spinlock_t ptr_lock;
 
-		/**
+		/*
 		 * One 'aging' tail pointer and one 'aged' tail pointer ready to
 		 * used for reading.
 		 *
@@ -1184,18 +1184,18 @@ struct i915_perf_stream {
 			u32 offset;
 		} tails[2];
 
-		/**
+		/*
 		 * Index for the aged tail ready to read() data up to.
 		 */
 		unsigned int aged_tail_idx;
 
-		/**
+		/*
 		 * A monotonic timestamp for when the current aging tail pointer
 		 * was read; used to determine when it is old enough to trust.
 		 */
 		u64 aging_timestamp;
 
-		/**
+		/*
 		 * Although we can always read back the head pointer register,
 		 * we prefer to avoid trusting the HW state, just to avoid any
 		 * risk that some hardware condition could * somehow bump the
-- 
2.23.0

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

* [Linux-kernel-mentees] [PATCH] drm: i915: fix kernel-doc warnings in i915_drv.h
  2019-10-01  0:58 [Linux-kernel-mentees] [PATCH] drm: i915: fix kernel-doc warnings in i915_drv.h dwlsalmeida
@ 2019-10-01  0:58 ` Daniel W. S. Almeida
  0 siblings, 0 replies; 2+ messages in thread
From: Daniel W. S. Almeida @ 2019-10-01  0:58 UTC (permalink / raw)


From: "Daniel W. S. Almeida" <dwlsalmeida@gmail.com>

The warnings were generated due to missing or misplaced characters.
Now fixed. No other change in content.

Signed-off-by: Daniel W. S. Almeida <dwlsalmeida at gmail.com>
---
 drivers/gpu/drm/i915/i915_drv.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 772154e4073e..941f60304932 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -1126,7 +1126,7 @@ struct i915_perf_stream {
 	struct i915_oa_config *oa_config;
 
 	/**
-	 * The OA context specific information.
+	 * @pinned_ctx: The OA context specific information.
 	 */
 	struct intel_context *pinned_ctx;
 	u32 specific_ctx_id;
@@ -1140,7 +1140,7 @@ struct i915_perf_stream {
 	int period_exponent;
 
 	/**
-	 * State of the OA buffer.
+	 * @oa_buffer: State of the OA buffer.
 	 */
 	struct {
 		struct i915_vma *vma;
@@ -1150,7 +1150,7 @@ struct i915_perf_stream {
 		int format_size;
 		int size_exponent;
 
-		/**
+		/*
 		 * Locks reads and writes to all head/tail state
 		 *
 		 * Consider: the head and tail pointer state needs to be read
@@ -1172,7 +1172,7 @@ struct i915_perf_stream {
 		 */
 		spinlock_t ptr_lock;
 
-		/**
+		/*
 		 * One 'aging' tail pointer and one 'aged' tail pointer ready to
 		 * used for reading.
 		 *
@@ -1184,18 +1184,18 @@ struct i915_perf_stream {
 			u32 offset;
 		} tails[2];
 
-		/**
+		/*
 		 * Index for the aged tail ready to read() data up to.
 		 */
 		unsigned int aged_tail_idx;
 
-		/**
+		/*
 		 * A monotonic timestamp for when the current aging tail pointer
 		 * was read; used to determine when it is old enough to trust.
 		 */
 		u64 aging_timestamp;
 
-		/**
+		/*
 		 * Although we can always read back the head pointer register,
 		 * we prefer to avoid trusting the HW state, just to avoid any
 		 * risk that some hardware condition could * somehow bump the
-- 
2.23.0

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

end of thread, other threads:[~2019-10-01  0:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-01  0:58 [Linux-kernel-mentees] [PATCH] drm: i915: fix kernel-doc warnings in i915_drv.h dwlsalmeida
2019-10-01  0:58 ` Daniel W. S. Almeida

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).