diff options
author | Tom Rini <trini@konsulko.com> | 2021-03-28 20:29:39 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-03-28 20:29:39 -0400 |
commit | 4906238191b90be7aec2269ba8cd6aeb161cd312 (patch) | |
tree | 1bab411fe047542ab69342a90fba6110f4dbe124 /drivers/timer/sandbox_timer.c | |
parent | 9c7335e4e68355a96bd5a411b2a5f85866823c58 (diff) | |
parent | e5021221db3faf7e90a295d6eb045fbf5c6a908b (diff) |
Merge tag 'dm-pull-28mar21' of git://git.denx.de/u-boot-dm into next
binman support for expanding entries, connections
misc fixes and improvements to sandbox, etc.
x86 CBFS improvements
x86 coreboot improvements
Diffstat (limited to 'drivers/timer/sandbox_timer.c')
-rw-r--r-- | drivers/timer/sandbox_timer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/timer/sandbox_timer.c b/drivers/timer/sandbox_timer.c index 2075cd4edda..c846bfb9f12 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; |