doc: fix Doxygen doc for LOG2(x)

Param x was documented twice.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
This commit is contained in:
Benjamin Cabé 2023-05-16 12:33:09 +02:00 committed by Carles Cufí
parent 984745950a
commit dfd0eedf39

View file

@ -538,9 +538,7 @@ char *utf8_lcpy(char *dst, const char *src, size_t n);
* @note This macro expands its argument multiple times (to permit use
* in constant expressions), which must not have side effects.
*
* @param x An unsigned integral value
*
* @param x value to compute logarithm of (positive only)
* @param x An unsigned integral value to compute logarithm of (positive only)
*
* @return log2(x) when 1 <= x <= max(x), -1 when x < 1
*/