aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/at91/patches-3.18/201-ARM-at91-usb-determine_rate-backport.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2016-01-19 10:15:39 +0000
committerJohn Crispin <john@openwrt.org>2016-01-19 10:15:39 +0000
commite25a467072cef68def8a2b3eff807fe9ebd89dfc (patch)
treea0ed083b2ad65ed3237c4bd9e4e1285ed69f97bf /target/linux/at91/patches-3.18/201-ARM-at91-usb-determine_rate-backport.patch
parent83c246dffd94ccc94e2ddf7eead47f0591ea8b56 (diff)
downloadupstream-e25a467072cef68def8a2b3eff807fe9ebd89dfc.tar.gz
upstream-e25a467072cef68def8a2b3eff807fe9ebd89dfc.tar.bz2
upstream-e25a467072cef68def8a2b3eff807fe9ebd89dfc.zip
at91: drop v3.18
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 48354
Diffstat (limited to 'target/linux/at91/patches-3.18/201-ARM-at91-usb-determine_rate-backport.patch')
-rw-r--r--target/linux/at91/patches-3.18/201-ARM-at91-usb-determine_rate-backport.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/at91/patches-3.18/201-ARM-at91-usb-determine_rate-backport.patch b/target/linux/at91/patches-3.18/201-ARM-at91-usb-determine_rate-backport.patch
deleted file mode 100644
index d0836286bf..0000000000
--- a/target/linux/at91/patches-3.18/201-ARM-at91-usb-determine_rate-backport.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/drivers/clk/at91/clk-usb.c
-+++ b/drivers/clk/at91/clk-usb.c
-@@ -59,7 +59,7 @@ static unsigned long at91sam9x5_clk_usb_
- static long at91sam9x5_clk_usb_determine_rate(struct clk_hw *hw,
- unsigned long rate,
- unsigned long *best_parent_rate,
-- struct clk_hw **best_parent_hw)
-+ struct clk **best_parent_clk)
- {
- struct clk *parent = NULL;
- long best_rate = -EINVAL;
-@@ -91,7 +91,7 @@ static long at91sam9x5_clk_usb_determine
- best_rate = tmp_rate;
- best_diff = tmp_diff;
- *best_parent_rate = tmp_parent_rate;
-- *best_parent_hw = __clk_get_hw(parent);
-+ *best_parent_clk = parent;
- }
-
- if (!best_diff || tmp_rate < rate)