From: Thierry Reding Date: Thu, 20 Aug 2015 09:42:22 +0000 (+0200) Subject: p2371: Remove hard-coded counter frequency X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=ca2d6dc25e9bbe623e3cf1467fa0b3ce4a7b70a8;p=project%2Fbcm63xx%2Fu-boot.git p2371: Remove hard-coded counter frequency The counter frequency is derived from clk_m on Tegra, but that clock can be configured by the primary bootloader to run at the same frequency as the oscillator (38.4 MHz on Tegra210) or a divided down frequency (most typically 19.2 MHz). Remove the hard-coded frequency and allow the timer setup code to query the correct value at runtime. Signed-off-by: Thierry Reding Signed-off-by: Tom Warren --- diff --git a/include/configs/p2371-0000.h b/include/configs/p2371-0000.h index ac089472e6..f2a713d0be 100644 --- a/include/configs/p2371-0000.h +++ b/include/configs/p2371-0000.h @@ -59,7 +59,4 @@ #include "tegra-common-usb-gadget.h" #include "tegra-common-post.h" -/* Crystal is 38.4MHz. clk_m runs at half that rate */ -#define COUNTER_FREQUENCY 19200000 - #endif /* _P2371_0000_H */