From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751567AbdKBE74 (ORCPT ); Thu, 2 Nov 2017 00:59:56 -0400 Received: from ozlabs.org ([103.22.144.67]:51467 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750753AbdKBE7y (ORCPT ); Thu, 2 Nov 2017 00:59:54 -0400 Date: Thu, 2 Nov 2017 15:59:52 +1100 From: Stephen Rothwell To: Linus Walleij , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Peter Zijlstra Cc: Linux-Next Mailing List , Linux Kernel Mailing List , Lukas Wunner , Andi Kleen Subject: linux-next: manual merge of the gpio tree with the tip tree Message-ID: <20171102155952.56d90a49@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, Today's linux-next merge of the gpio tree got a conflict in: include/linux/bitops.h between commit: cbe96375025e ("bitops: Add clear/set_bit32() to linux/bitops.h") from the tip tree and commit: 5307e2ad69ab ("bitops: Introduce assign_bit()") from the gpio tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc include/linux/bitops.h index 15a5bcfcd0a2,9a874deee6e2..000000000000 --- a/include/linux/bitops.h +++ b/include/linux/bitops.h @@@ -227,32 -227,30 +227,56 @@@ static inline unsigned long __ffs64(u6 return __ffs((unsigned long)word); } +/* + * clear_bit32 - Clear a bit in memory for u32 array + * @nr: Bit to clear + * @addr: u32 * address of bitmap + * + * Same as clear_bit, but avoids needing casts for u32 arrays. + */ + +static __always_inline void clear_bit32(long nr, volatile u32 *addr) +{ + clear_bit(nr, (volatile unsigned long *)addr); +} + +/* + * set_bit32 - Set a bit in memory for u32 array + * @nr: Bit to clear + * @addr: u32 * address of bitmap + * + * Same as set_bit, but avoids needing casts for u32 arrays. + */ + +static __always_inline void set_bit32(long nr, volatile u32 *addr) +{ + set_bit(nr, (volatile unsigned long *)addr); +} + + /** + * assign_bit - Assign value to a bit in memory + * @nr: the bit to set + * @addr: the address to start counting from + * @value: the value to assign + */ + static __always_inline void assign_bit(long nr, volatile unsigned long *addr, + bool value) + { + if (value) + set_bit(nr, addr); + else + clear_bit(nr, addr); + } + + static __always_inline void __assign_bit(long nr, volatile unsigned long *addr, + bool value) + { + if (value) + __set_bit(nr, addr); + else + __clear_bit(nr, addr); + } + #ifdef __KERNEL__ #ifndef set_mask_bits