From 26b06940a9bd894c1a21d76b160a3daea0843417 Mon Sep 17 00:00:00 2001 From: Luka Perkov Date: Sun, 29 Jun 2014 23:29:57 +0000 Subject: mvebu: drop 3.10 support Signed-off-by: Luka Perkov SVN-Revision: 41406 --- ...-armada-370-xp-Get-reference-fixed-clock-.patch | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 target/linux/mvebu/patches-3.10/0170-clocksource-armada-370-xp-Get-reference-fixed-clock-.patch (limited to 'target/linux/mvebu/patches-3.10/0170-clocksource-armada-370-xp-Get-reference-fixed-clock-.patch') diff --git a/target/linux/mvebu/patches-3.10/0170-clocksource-armada-370-xp-Get-reference-fixed-clock-.patch b/target/linux/mvebu/patches-3.10/0170-clocksource-armada-370-xp-Get-reference-fixed-clock-.patch deleted file mode 100644 index e87f7fc7c5..0000000000 --- a/target/linux/mvebu/patches-3.10/0170-clocksource-armada-370-xp-Get-reference-fixed-clock-.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 7d7214129f7bde5bb55c0691968407b48f08efb5 Mon Sep 17 00:00:00 2001 -From: Ezequiel Garcia -Date: Tue, 20 Aug 2013 12:45:53 -0300 -Subject: [PATCH 170/203] clocksource: armada-370-xp: Get reference fixed-clock - by name - -The Armada XP timer has two mandatory clock inputs: nbclk and refclk, -as specified by the device-tree binding. - -This commit fixes the clock selection. Instead of hard-coding the clock -rate for the 25 MHz reference fixed-clock, obtain the clock by its name. - -Signed-off-by: Ezequiel Garcia -Signed-off-by: Daniel Lezcano -Acked-by: Jason Cooper -Acked-by: Gregory CLEMENT ---- - drivers/clocksource/time-armada-370-xp.c | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - ---- a/drivers/clocksource/time-armada-370-xp.c -+++ b/drivers/clocksource/time-armada-370-xp.c -@@ -294,8 +294,11 @@ static void __init armada_370_xp_timer_c - - static void __init armada_xp_timer_init(struct device_node *np) - { -- /* The fixed 25MHz timer is required, timer25Mhz is true by default */ -- timer_clk = 25000000; -+ struct clk *clk = of_clk_get_by_name(np, "fixed"); -+ -+ /* The 25Mhz fixed clock is mandatory, and must always be available */ -+ BUG_ON(IS_ERR(clk)); -+ timer_clk = clk_get_rate(clk); - - armada_370_xp_timer_common_init(np); - } -- cgit v1.2.3