From: Guanjun Date: Mon, 27 Nov 2023 08:31:27 +0000 (+0800) Subject: lib/find_bit: Fix the code comments about find_next_bit_wrap X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=92697139b01339b6c0767fa1305a4df9a7c1f37f;p=linux.git lib/find_bit: Fix the code comments about find_next_bit_wrap The function find_next_bit_wrap only has one memory region to search on. Adjust the comments. Signed-off-by: Guanjun Signed-off-by: Yury Norov --- diff --git a/include/linux/find.h b/include/linux/find.h index 5e4f39ef2e72c..af63ae5b90137 100644 --- a/include/linux/find.h +++ b/include/linux/find.h @@ -413,8 +413,8 @@ unsigned long find_next_and_bit_wrap(const unsigned long *addr1, } /** - * find_next_bit_wrap - find the next set bit in both memory regions - * @addr: The first address to base the search on + * find_next_bit_wrap - find the next set bit in a memory region + * @addr: The address to base the search on * @size: The bitmap size in bits * @offset: The bitnumber to start searching at *