summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2022-06-28 15:59:08 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2022-06-28 15:59:08 +1000
commit2c4485e93fbb59414fe239849db83862601653e8 (patch)
tree95ab93d18da326dbd4f4b97a39eb4de46f92b5e2
parentdd5ba07e5e14068d1165f2a710af63b019a3297a (diff)
parentba1afa676d0babf99e99f5415db43fdd7ecef104 (diff)
downloadlinux-next-2c4485e93fbb59414fe239849db83862601653e8.tar.gz
linux-next-2c4485e93fbb59414fe239849db83862601653e8.zip
Merge branch 'bitmap-for-next' of https://github.com/norov/linux.git
-rw-r--r--include/linux/bitmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/bitmap.h b/include/linux/bitmap.h
index 2e6cd5681040..f091a1664bf1 100644
--- a/include/linux/bitmap.h
+++ b/include/linux/bitmap.h
@@ -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
*