public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Fabio Estevam <festevam@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 03/12] compat: Remove is_power_of_2() definition
Date: Sat, 24 Oct 2015 13:26:45 -0200	[thread overview]
Message-ID: <1445700414-28600-3-git-send-email-festevam@gmail.com> (raw)
In-Reply-To: <1445700414-28600-1-git-send-email-festevam@gmail.com>

From: Fabio Estevam <fabio.estevam@freescale.com>

Use the is_power_of_2() definition from log2.h to align with the
kernel implementation.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
---
Changes since v1:
- None

 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 <asm/io.h>
 #include <asm/arch/cpu.h>
 #include <asm/arch/soc.h>
-#include <linux/compat.h>
+#include <linux/log2.h>
 #include <linux/mbus.h>
 
 /* 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 <linux/gfp.h>
 #include <linux/slab.h>
 #else
-#include <linux/compat.h>
 #include <linux/err.h>
+#include <linux/log2.h>
 #include <ubi_uboot.h>
 #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 <linux/slab.h>
 #include <linux/major.h>
 #else
-#include <linux/compat.h>
+#include <linux/log2.h>
 #endif
 #include <linux/err.h>
 #include <ubi_uboot.h>
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 <common.h>
 #include <malloc.h>
 #include <memalign.h>
-#include <linux/compat.h>
+#include <linux/log2.h>
 #include <linux/stat.h>
 #include <linux/err.h>
 #include "ubifs.h"
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) */
 
-- 
1.9.1

  parent reply	other threads:[~2015-10-24 15:26 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-24 15:26 [U-Boot] [PATCH v2 01/13] include: Add log2 header from the kernel Fabio Estevam
2015-10-24 15:26 ` [U-Boot] [PATCH v2 02/13] include: Add generic bitops headers Fabio Estevam
2015-10-25  6:50   ` Jagan Teki
2015-10-25 16:28     ` Fabio Estevam
2015-10-25 16:54       ` Fabio Estevam
2015-10-24 15:26 ` Fabio Estevam [this message]
2015-10-25  6:53   ` [U-Boot] [PATCH v2 03/12] compat: Remove is_power_of_2() definition Jagan Teki
2015-10-25 13:11     ` Fabio Estevam
2015-10-24 15:26 ` [U-Boot] [PATCH v2 04/12] powerpc: Remove __ilog2_u64 and ffs4 from bitops Fabio Estevam
2015-10-24 21:16   ` Tom Rini
2015-10-24 15:26 ` [U-Boot] [PATCH v2 05/12] ARM: bitops: Use the generic bitops headers Fabio Estevam
2015-10-24 21:16   ` Tom Rini
2015-10-24 15:26 ` [U-Boot] [PATCH v2 06/12] x86: " Fabio Estevam
2015-10-24 21:16   ` Tom Rini
2015-10-24 15:26 ` [U-Boot] [PATCH v2 07/12] m68k: " Fabio Estevam
2015-10-24 21:16   ` Tom Rini
2015-10-24 15:26 ` [U-Boot] [PATCH v2 08/12] blackfin: " Fabio Estevam
2015-10-24 21:17   ` Tom Rini
2015-10-24 15:26 ` [U-Boot] [PATCH v2 09/12] sh: " Fabio Estevam
2015-10-24 21:17   ` Tom Rini
2015-10-24 15:26 ` [U-Boot] [PATCH v2 10/12] sandbox: " Fabio Estevam
2015-10-24 21:17   ` Tom Rini
2015-10-24 15:26 ` [U-Boot] [PATCH v2 11/12] spi: sf_ops: Add SPI protection mechanism from the kernel Fabio Estevam
2015-10-24 23:24   ` Tom Rini
2015-10-24 15:26 ` [U-Boot] [PATCH v2 12/12] spi: Add SPI NOR protection mechanism Fabio Estevam
2015-10-24 23:24   ` Tom Rini
2015-10-25  6:44 ` [U-Boot] [PATCH v2 01/13] include: Add log2 header from the kernel Jagan Teki
2015-10-25 12:51   ` Fabio Estevam

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1445700414-28600-3-git-send-email-festevam@gmail.com \
    --to=festevam@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox