]> Git Repo - linux.git/commit
lib/bitmap: introduce bitmap_replace() helper
authorAndy Shevchenko <[email protected]>
Thu, 5 Dec 2019 00:53:26 +0000 (16:53 -0800)
committerLinus Torvalds <[email protected]>
Thu, 5 Dec 2019 03:44:14 +0000 (19:44 -0800)
commit30544ed5de431fe25d3793e4dd5a058d877c4d77
tree4e61a782d8482dc987228ecddd854441f9bb6f68
parent780ff33b8bfac4f44fcc399a870d50ff2e74b33d
lib/bitmap: introduce bitmap_replace() helper

In some drivers we want to have a single operation over bitmap which is
an equivalent to:

*dst = (*old & ~(*mask)) | (*new & *mask)

Introduce bitmap_replace() helper for this.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Andy Shevchenko <[email protected]>
Acked-by: Linus Walleij <[email protected]>
Cc: Rasmus Villemoes <[email protected]>
Cc: Bartosz Golaszewski <[email protected]>
Cc: Geert Uytterhoeven <[email protected]>
Cc: Marek Vasut <[email protected]>
Cc: Thomas Petazzoni <[email protected]>
Cc: William Breathitt Gray <[email protected]>
Cc: Yury Norov <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
include/linux/bitmap.h
lib/bitmap.c
lib/test_bitmap.c
This page took 0.054901 seconds and 4 git commands to generate.