From: Will Deacon Date: Thu, 6 Aug 2015 16:54:43 +0000 (+0100) Subject: locking, include/llist: Use linux/atomic.h instead of asm/cmpxchg.h X-Git-Tag: v4.14-rc1~4452^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd074aea9261784e44f292e1132830ec221802c6;p=platform%2Fkernel%2Flinux-rpi.git locking, include/llist: Use linux/atomic.h instead of asm/cmpxchg.h Including an asm/ header directly is best avoided, so use linux/atomic.h instead of asm/cmpxchg.h in linux/llist.h. Signed-off-by: Will Deacon Signed-off-by: Peter Zijlstra (Intel) Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: Waiman.Long@hp.com Cc: paulmck@linux.vnet.ibm.com Link: http://lkml.kernel.org/r/1438880084-18856-8-git-send-email-will.deacon@arm.com Signed-off-by: Ingo Molnar --- diff --git a/include/linux/llist.h b/include/linux/llist.h index fbf10a0..fd4ca0b 100644 --- a/include/linux/llist.h +++ b/include/linux/llist.h @@ -55,8 +55,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include #include -#include struct llist_head { struct llist_node *first;