From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heiko Schocher Date: Mon, 26 Oct 2015 06:11:53 +0100 Subject: [U-Boot] [PATCH 03/13] compat: Remove is_power_of_2() definition In-Reply-To: <1445689693-21436-3-git-send-email-festevam@gmail.com> References: <1445689693-21436-1-git-send-email-festevam@gmail.com> <1445689693-21436-3-git-send-email-festevam@gmail.com> Message-ID: <562DB619.5020504@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello Fabian, Am 24.10.2015 um 14:28 schrieb Fabio Estevam: > From: Fabio Estevam > > Use the is_power_of_2() definition from log2.h to align with the > kernel implementation. > > Signed-off-by: Fabio Estevam > --- > arch/arm/mach-mvebu/mbus.c | 2 +- > drivers/mtd/mtdcore.c | 2 +- > drivers/mtd/ubi/build.c | 2 +- > fs/ubifs/super.c | 2 +- > include/linux/compat.h | 6 ------ > 5 files changed, 4 insertions(+), 10 deletions(-) > > diff --git a/arch/arm/mach-mvebu/mbus.c b/arch/arm/mach-mvebu/mbus.c > index 771cce6..346278e 100644 > --- a/arch/arm/mach-mvebu/mbus.c > +++ b/arch/arm/mach-mvebu/mbus.c > @@ -52,7 +52,7 @@ > #include > #include > #include > -#include > +#include > #include > > /* DDR target is the same on all platforms */ > diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c > index 2f2172b..81be0f7 100644 > --- a/drivers/mtd/mtdcore.c > +++ b/drivers/mtd/mtdcore.c > @@ -27,8 +27,8 @@ > #include > #include > #else > -#include > #include > +#include > #include > #endif > > diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c > index 290d524..6ed7667 100644 > --- a/drivers/mtd/ubi/build.c > +++ b/drivers/mtd/ubi/build.c > @@ -30,7 +30,7 @@ > #include > #include > #else > -#include > +#include > #endif > #include > #include > diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c > index 41763a1..eaae5fb 100644 > --- a/fs/ubifs/super.c > +++ b/fs/ubifs/super.c > @@ -31,7 +31,7 @@ > #include > #include > #include > -#include > +#include > #include > #include > #include "ubifs.h" It would be nice to ge rid of linux/compat.h at all in ubi/ubifs code ... but does this really compile for all boards? I think you should add here linux/log2.h, without deleting linux/compat.h bye, Heiko > diff --git a/include/linux/compat.h b/include/linux/compat.h > index fbebf91..7a99599 100644 > --- a/include/linux/compat.h > +++ b/include/linux/compat.h > @@ -104,12 +104,6 @@ static inline void led_trigger_unregister_simple(struct led_trigger *trigger) {} > static inline void led_trigger_event(struct led_trigger *trigger, > enum led_brightness event) {} > > -/* include/linux/log2.h */ > -static inline int is_power_of_2(unsigned long n) > -{ > - return (n != 0 && ((n & (n - 1)) == 0)); > -} > - > /* uapi/linux/limits.h */ > #define XATTR_LIST_MAX 65536 /* size of extended attribute namelist (64k) */ > > -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany