[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240826150822.4057164-3-devarsht@ti.com>
Date: Mon, 26 Aug 2024 20:38:18 +0530
From: Devarsh Thakkar <devarsht@...com>
To: <mchehab@...nel.org>, <hverkuil-cisco@...all.nl>,
<linux-media@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<sebastian.fricke@...labora.com>, <linux-doc@...r.kernel.org>
CC: <praneeth@...com>, <nm@...com>, <vigneshr@...com>, <s-jain1@...com>,
<r-donadkar@...com>, <b-brnich@...com>, <detheridge@...com>,
<p-mantena@...com>, <vijayp@...com>, <devarsht@...com>,
<andi.shyti@...ux.intel.com>, <nicolas@...fresne.ca>,
<andriy.shevchenko@...ux.intel.com>, <jirislaby@...nel.org>,
<davidgow@...gle.com>, <dlatypov@...gle.com>, <corbet@....net>,
<broonie@...nel.org>, <jani.nikula@...el.com>, <rdunlap@...radead.org>,
<nik.borisov@...e.com>, <Dave.Martin@....com>
Subject: [PATCH v2 2/6] math.h: Use kernel-doc syntax for division macros
Enable reST documentation for division macros DIV_ROUND_CLOSEST and
DIV_ROUND_CLOSEST_ULL by using kernel-doc markup and syntax for documenting
them.
Signed-off-by: Devarsh Thakkar <devarsht@...com>
---
V2: Fix spelling for division and reST
---
include/linux/math.h | 23 +++++++++++++++++------
1 file changed, 17 insertions(+), 6 deletions(-)
diff --git a/include/linux/math.h b/include/linux/math.h
index b59a02a007d7..f3ba3ebe4fcb 100644
--- a/include/linux/math.h
+++ b/include/linux/math.h
@@ -140,9 +140,14 @@
*/
#define roundclosest(x, y) roundup((x) - (y) / 2, (y))
-/*
- * Divide positive or negative dividend by positive or negative divisor
- * and round to closest integer. Result is undefined for negative
+/**
+ * DIV_ROUND_CLOSEST - Divide positive or negative dividend by positive or
+ * negative divisor and round to closest value
+ * @x: dividend value
+ * @divisor: divisor value
+ *
+ * Divide positive or negative dividend value @x by positive or negative
+ * @divisor value and round to closest integer. Result is undefined for negative
* divisors if the dividend variable type is unsigned and for negative
* dividends if the divisor variable type is unsigned.
*/
@@ -157,9 +162,15 @@
(((__x) - ((__d) / 2)) / (__d)); \
} \
)
-/*
- * Same as above but for u64 dividends. divisor must be a 32-bit
- * number.
+
+/**
+ * DIV_ROUND_CLOSEST_ULL - Divide 64-bit unsigned dividend by 32-bit divisor and
+ * round to closest value
+ * @x: unsigned 64-bit dividend
+ * @divisor: 32-bit divisor
+ *
+ * Divide unsigned 64-bit dividend value @x by 32-bit @divisor value
+ * and round to closest integer. Result is undefined for negative divisors.
*/
#define DIV_ROUND_CLOSEST_ULL(x, divisor)( \
{ \
--
2.39.1
Powered by blists - more mailing lists