]> git.baikalelectronics.ru Git - kernel.git/commitdiff
lib: bitmap: fix the duplicated comments on bitmap_to_arr64()
authorQu Wenruo <wqu@suse.com>
Fri, 24 Jun 2022 09:31:47 +0000 (17:31 +0800)
committerYury Norov <yury.norov@gmail.com>
Fri, 24 Jun 2022 15:02:30 +0000 (08:02 -0700)
Thanks to the recent commit a1a19b185fa0 ("lib: add
bitmap_{from,to}_arr64") now we can directly convert a U64 value into a
bitmap and vice verse.

However when checking the header there is duplicated helper for
bitmap_to_arr64(), but no bitmap_from_arr64().

Just fix the copy-n-paste error.

Signed-off-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Yury Norov <yury.norov@gmail.com>
include/linux/bitmap.h

index 2e6cd5681040918a2d7a5923e4fd75c3c3ed179e..f091a1664bf1a9818fc2c08d741c77da37ff247d 100644 (file)
@@ -71,9 +71,9 @@ struct device;
  *  bitmap_release_region(bitmap, pos, order)   Free specified bit region
  *  bitmap_allocate_region(bitmap, pos, order)  Allocate specified bit region
  *  bitmap_from_arr32(dst, buf, nbits)          Copy nbits from u32[] buf to dst
+ *  bitmap_from_arr64(dst, buf, nbits)          Copy nbits from u64[] buf to dst
  *  bitmap_to_arr32(buf, src, nbits)            Copy nbits from buf to u32[] dst
  *  bitmap_to_arr64(buf, src, nbits)            Copy nbits from buf to u64[] dst
- *  bitmap_to_arr64(buf, src, nbits)            Copy nbits from buf to u64[] dst
  *  bitmap_get_value8(map, start)               Get 8bit value from map at start
  *  bitmap_set_value8(map, value, start)        Set 8bit value to map at start
  *