From: Simon Glass Date: Mon, 15 Mar 2021 05:11:06 +0000 (+1300) Subject: sandbox: Only call timer_timebase_fallback() if present X-Git-Tag: v2021.10~246^2~3^2~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=539db6ab09c06ff052dac6c585ec1eaf3f1d6dc8;p=platform%2Fkernel%2Fu-boot.git sandbox: Only call timer_timebase_fallback() if present This function only exists if CPU is enabled. Update the code to take account of this, so that it does not have to be enabled on all sandbox builds. Signed-off-by: Simon Glass Reviewed-by: Sean Anderson --- diff --git a/drivers/timer/sandbox_timer.c b/drivers/timer/sandbox_timer.c index 2075cd4..c846bfb 100644 --- a/drivers/timer/sandbox_timer.c +++ b/drivers/timer/sandbox_timer.c @@ -38,7 +38,8 @@ static int sandbox_timer_probe(struct udevice *dev) { struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev); - if (dev_read_bool(dev, "sandbox,timebase-frequency-fallback")) + if (CONFIG_IS_ENABLED(CPU) && + dev_read_bool(dev, "sandbox,timebase-frequency-fallback")) return timer_timebase_fallback(dev); else if (!uc_priv->clock_rate) uc_priv->clock_rate = SANDBOX_TIMER_RATE;