]> git.proxmox.com Git - mirror_qemu.git/blobdiff - util/bitops.c
Merge remote-tracking branch 'remotes/xtensa/tags/20190326-xtensa' into staging
[mirror_qemu.git] / util / bitops.c
index f2364015c4bf3933d2f7c6aa2d765f775a8b0e86..3fe6b1c4f16089b9b9ba4547e459884229f5eace 100644 (file)
@@ -18,7 +18,7 @@
  * Find the next set bit in a memory region.
  */
 unsigned long find_next_bit(const unsigned long *addr, unsigned long size,
-                           unsigned long offset)
+                            unsigned long offset)
 {
     const unsigned long *p = addr + BIT_WORD(offset);
     unsigned long result = offset & ~(BITS_PER_LONG-1);
@@ -83,7 +83,7 @@ found_middle:
  * Linus' asm-alpha/bitops.h.
  */
 unsigned long find_next_zero_bit(const unsigned long *addr, unsigned long size,
-                                unsigned long offset)
+                                 unsigned long offset)
 {
     const unsigned long *p = addr + BIT_WORD(offset);
     unsigned long result = offset & ~(BITS_PER_LONG-1);