math: remove is_power_of_2() keep IS_POWER_OF_2()
Caused it may conflict with other platfrom Signed-off-by: ligd <liguiding1@xiaomi.com>
This commit is contained in:
parent
9bfc426321
commit
5ff332f936
2 changed files with 2 additions and 3 deletions
|
|
@ -304,7 +304,7 @@ static int32_t divider_get_val(uint32_t rate, uint32_t parent_rate,
|
||||||
|
|
||||||
div = div_round_up(parent_rate, rate);
|
div = div_round_up(parent_rate, rate);
|
||||||
|
|
||||||
if ((flags & CLK_DIVIDER_POWER_OF_TWO) && !is_power_of_2(div))
|
if ((flags & CLK_DIVIDER_POWER_OF_TWO) && !IS_POWER_OF_2(div))
|
||||||
{
|
{
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -114,7 +114,6 @@ extern "C"
|
||||||
* Public Function Prototypes
|
* Public Function Prototypes
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#define is_power_of_2(n) IS_POWER_OF_2(n)
|
|
||||||
#define flsx(n) ((sizeof(n) <= sizeof(long)) ? flsl(n) : flsll(n))
|
#define flsx(n) ((sizeof(n) <= sizeof(long)) ? flsl(n) : flsll(n))
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|
@ -131,7 +130,7 @@ extern "C"
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#define log2ceil(n) (is_power_of_2(n) ? (flsx(n) - 1) : flsx(n))
|
#define log2ceil(n) (IS_POWER_OF_2(n) ? (flsx(n) - 1) : flsx(n))
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: log2floor
|
* Name: log2floor
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue