Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'powerpc-4.6-5' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux

Pull powerpc fix from Michael Ellerman:
"Fix bad inline asm constraint in create_zero_mask() from Anton
Blanchard"

* tag 'powerpc-4.6-5' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux:
powerpc: Fix bad inline asm constraint in create_zero_mask()

+1 -1
+1 -1
arch/powerpc/include/asm/word-at-a-time.h
··· 82 82 "andc %1,%1,%2\n\t" 83 83 "popcntd %0,%1" 84 84 : "=r" (leading_zero_bits), "=&r" (trailing_zero_bit_mask) 85 - : "r" (bits)); 85 + : "b" (bits)); 86 86 87 87 return leading_zero_bits; 88 88 }