mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-24 20:54:24 +08:00
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>
This commit is contained in:
parent
de4d2e9e7c
commit
f8fdb81f6c
@ -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 */
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
@ -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"
|
||||
|
@ -130,12 +130,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) */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user