diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-11-05 12:43:39 -0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-11-05 16:46:59 -0500 |
commit | f8fdb81f6cbf9387fee7a8ab82b315798a7038ba (patch) | |
tree | 5399a7ffe05509a78b1454acfbed8c19181e3649 /fs/ubifs | |
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 <fabio.estevam@freescale.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index c4743135fce..abe861a976a 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" |