mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00: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
5 changed files with 4 additions and 10 deletions
|
@ -52,7 +52,7 @@
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/arch/cpu.h>
|
#include <asm/arch/cpu.h>
|
||||||
#include <asm/arch/soc.h>
|
#include <asm/arch/soc.h>
|
||||||
#include <linux/compat.h>
|
#include <linux/log2.h>
|
||||||
#include <linux/mbus.h>
|
#include <linux/mbus.h>
|
||||||
|
|
||||||
/* DDR target is the same on all platforms */
|
/* DDR target is the same on all platforms */
|
||||||
|
|
|
@ -27,11 +27,11 @@
|
||||||
#include <linux/gfp.h>
|
#include <linux/gfp.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#else
|
#else
|
||||||
#include <linux/compat.h>
|
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
#include <ubi_uboot.h>
|
#include <ubi_uboot.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <linux/log2.h>
|
||||||
#include <linux/mtd/mtd.h>
|
#include <linux/mtd/mtd.h>
|
||||||
#include <linux/mtd/partitions.h>
|
#include <linux/mtd/partitions.h>
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/major.h>
|
#include <linux/major.h>
|
||||||
#else
|
#else
|
||||||
#include <linux/compat.h>
|
#include <linux/log2.h>
|
||||||
#endif
|
#endif
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
#include <ubi_uboot.h>
|
#include <ubi_uboot.h>
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <memalign.h>
|
#include <memalign.h>
|
||||||
#include <linux/compat.h>
|
#include <linux/log2.h>
|
||||||
#include <linux/stat.h>
|
#include <linux/stat.h>
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
#include "ubifs.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,
|
static inline void led_trigger_event(struct led_trigger *trigger,
|
||||||
enum led_brightness event) {}
|
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 */
|
/* uapi/linux/limits.h */
|
||||||
#define XATTR_LIST_MAX 65536 /* size of extended attribute namelist (64k) */
|
#define XATTR_LIST_MAX 65536 /* size of extended attribute namelist (64k) */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue