diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2014-01-29 07:42:46 +0400 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2014-02-21 21:33:43 +0400 |
commit | cdc9af7ccfc26d35ff8a29dded2cc2c096c0fc1e (patch) | |
tree | d3633387e676dbe736cd7582985c5e0dc4dae735 /arch/xtensa/platforms | |
parent | bda8932d234aeaee870ac666e776a5ba03bb13a4 (diff) | |
download | talos-obmc-linux-cdc9af7ccfc26d35ff8a29dded2cc2c096c0fc1e.tar.gz talos-obmc-linux-cdc9af7ccfc26d35ff8a29dded2cc2c096c0fc1e.zip |
xtensa: xtfpga: use common clock framework
With this change the board needs to set up single clock object, users of
this clock will get correct frequency automatically.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch/xtensa/platforms')
-rw-r--r-- | arch/xtensa/platforms/xtfpga/setup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/xtensa/platforms/xtfpga/setup.c b/arch/xtensa/platforms/xtfpga/setup.c index 800227862fe8..03729132ae44 100644 --- a/arch/xtensa/platforms/xtfpga/setup.c +++ b/arch/xtensa/platforms/xtfpga/setup.c @@ -135,11 +135,11 @@ static void __init update_local_mac(struct device_node *node) static int __init machine_setup(void) { - struct device_node *serial; + struct device_node *clock; struct device_node *eth = NULL; - for_each_compatible_node(serial, NULL, "ns16550a") - update_clock_frequency(serial); + for_each_node_by_name(clock, "main-oscillator") + update_clock_frequency(clock); if ((eth = of_find_compatible_node(eth, NULL, "opencores,ethoc"))) update_local_mac(eth); |