[PATCH 1/2] media: dvb_frontend.h: fix ktime_t type description in kernel-doc

Jesung Yang posted 2 patches 3 months ago
[PATCH 1/2] media: dvb_frontend.h: fix ktime_t type description in kernel-doc
Posted by Jesung Yang 3 months ago
Fix the kernel-doc comment for dvb_frontend_sleep_until() that incorrectly
described ktime_t as a struct.

ktime_t is a typedef for s64, not a struct or union. It was formerly
implemented as a union, which was removed in the commit 2456e8553544
("ktime: Get rid of the union").

Signed-off-by: Jesung Yang <y.j3ms.n@gmail.com>
---
 include/media/dvb_frontend.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/media/dvb_frontend.h b/include/media/dvb_frontend.h
index e7c44870f20d..607f7645468e 100644
--- a/include/media/dvb_frontend.h
+++ b/include/media/dvb_frontend.h
@@ -810,7 +810,7 @@ void dvb_frontend_reinitialise(struct dvb_frontend *fe);
  * dvb_frontend_sleep_until() - Sleep for the amount of time given by
  *                      add_usec parameter
  *
- * @waketime: pointer to &struct ktime_t
+ * @waketime: pointer to &ktime_t
  * @add_usec: time to sleep, in microseconds
  *
  * This function is used to measure the time required for the
-- 
2.39.5