timer: BDW: fix DMA trace issue on BDW

On BDW, DMA trace doesn't update trace log to host.
platform_timer_start function would set up some registers
for HW and make timer ready. On BDW, cpu timer is used to
driver work queue while on other platforms, external timer
is used. we don't need to enable timer interrupt now or it
will trigger unexpect interrupt which would make scheduler
in unknown status. timer_enable function would enable it

Signed-off-by: Rander Wang <rander.wang@linux.intel.com>
This commit is contained in:
Rander Wang 2019-02-21 15:31:14 +08:00 committed by Liam Girdwood
parent 09b612e463
commit 84de2e32c9
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@
void platform_timer_start(struct timer *timer) void platform_timer_start(struct timer *timer)
{ {
arch_timer_enable(timer); //nothing to do on BDW & HSW for cpu timer
} }
void platform_timer_stop(struct timer *timer) void platform_timer_stop(struct timer *timer)