mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
serial_lpuart: Fix config check issue when using clk driver in SPL
Should use CONFIG_IS_ENABLED not IS_ENABLED for CLK driver, so it will check the CONFIG_SPL_CLK when building SPL Signed-off-by: Ye Li <ye.li@nxp.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
d44f793207
commit
af325e9597
1 changed files with 4 additions and 4 deletions
|
@ -106,7 +106,7 @@ u32 __weak get_lpuart_clk(void)
|
|||
return CONFIG_SYS_CLK_FREQ;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_CLK)
|
||||
#if CONFIG_IS_ENABLED(CLK)
|
||||
static int get_lpuart_clk_rate(struct udevice *dev, u32 *clk)
|
||||
{
|
||||
struct clk per_clk;
|
||||
|
@ -148,7 +148,7 @@ static void _lpuart_serial_setbrg(struct udevice *dev,
|
|||
u16 sbr;
|
||||
int ret;
|
||||
|
||||
if (IS_ENABLED(CONFIG_CLK)) {
|
||||
if (CONFIG_IS_ENABLED(CLK)) {
|
||||
ret = get_lpuart_clk_rate(dev, &clk);
|
||||
if (ret)
|
||||
return;
|
||||
|
@ -237,7 +237,7 @@ static void _lpuart32_serial_setbrg_7ulp(struct udevice *dev,
|
|||
u32 clk;
|
||||
int ret;
|
||||
|
||||
if (IS_ENABLED(CONFIG_CLK)) {
|
||||
if (CONFIG_IS_ENABLED(CLK)) {
|
||||
ret = get_lpuart_clk_rate(dev, &clk);
|
||||
if (ret)
|
||||
return;
|
||||
|
@ -306,7 +306,7 @@ static void _lpuart32_serial_setbrg(struct udevice *dev,
|
|||
u32 sbr;
|
||||
int ret;
|
||||
|
||||
if (IS_ENABLED(CONFIG_CLK)) {
|
||||
if (CONFIG_IS_ENABLED(CLK)) {
|
||||
ret = get_lpuart_clk_rate(dev, &clk);
|
||||
if (ret)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue