diff options
| author | Fabio Estevam <[email protected]> | 2015-11-05 12:43:39 -0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2015-11-05 16:46:59 -0500 |
| commit | f8fdb81f6cbf9387fee7a8ab82b315798a7038ba (patch) | |
| tree | 5399a7ffe05509a78b1454acfbed8c19181e3649 /drivers | |
| parent | de4d2e9e7ce0f9fda76f07bafafefa10f01a9605 (diff) | |
compat: Remove is_power_of_2() definition
Use the is_power_of_2() definition from log2.h to align with the
kernel implementation.
Signed-off-by: Fabio Estevam <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mtd/mtdcore.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/ubi/build.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c index 2f2172b9878..e3f56e54248 100644 --- a/drivers/mtd/mtdcore.c +++ b/drivers/mtd/mtdcore.c @@ -27,11 +27,11 @@ #include <linux/gfp.h> #include <linux/slab.h> #else -#include <linux/compat.h> #include <linux/err.h> #include <ubi_uboot.h> #endif +#include <linux/log2.h> #include <linux/mtd/mtd.h> #include <linux/mtd/partitions.h> diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c index f0a3b679422..f484e62b32c 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> |
