From cee81e9941648a2ec02f192125c7dfea848c8a43 Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Mon, 16 Nov 2015 00:11:24 +0100 Subject: [PATCH] Don't include linux/bitops.h header in ASM code --- u-boot/include/soc/soc_common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/u-boot/include/soc/soc_common.h b/u-boot/include/soc/soc_common.h index ec6aecc..6dfea09 100644 --- a/u-boot/include/soc/soc_common.h +++ b/u-boot/include/soc/soc_common.h @@ -9,7 +9,9 @@ #ifndef _SOC_COMMON_H_ #define _SOC_COMMON_H_ +#ifndef __ASSEMBLY__ #include +#endif /* !__ASSEMBLY__ */ #ifndef SOC_TYPE #error "SOC_TYPE is not defined!" -- 2.25.1