Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'clk-fixes-for-linus' of git://git.linaro.org/people/mike.turquette/linux

Pull clock driver fix from Mike Turquette:
"A single patch to re-enable audio which is broken on all DRA7
SoC-based platforms. Missed this one from the last set of fixes"

* tag 'clk-fixes-for-linus' of git://git.linaro.org/people/mike.turquette/linux:
clk: ti: clk-7xx: Correct ABE DPLL configuration

+6 -1
+6 -1
drivers/clk/ti/clk-7xx.c
··· 16 16 #include <linux/clkdev.h> 17 17 #include <linux/clk/ti.h> 18 18 19 - #define DRA7_DPLL_ABE_DEFFREQ 361267200 19 + #define DRA7_DPLL_ABE_DEFFREQ 180633600 20 20 #define DRA7_DPLL_GMAC_DEFFREQ 1000000000 21 21 22 22 ··· 321 321 rc = clk_set_rate(dpll_ck, DRA7_DPLL_ABE_DEFFREQ); 322 322 if (rc) 323 323 pr_err("%s: failed to configure ABE DPLL!\n", __func__); 324 + 325 + dpll_ck = clk_get_sys(NULL, "dpll_abe_m2x2_ck"); 326 + rc = clk_set_rate(dpll_ck, DRA7_DPLL_ABE_DEFFREQ * 2); 327 + if (rc) 328 + pr_err("%s: failed to configure ABE DPLL m2x2!\n", __func__); 324 329 325 330 dpll_ck = clk_get_sys(NULL, "dpll_gmac_ck"); 326 331 rc = clk_set_rate(dpll_ck, DRA7_DPLL_GMAC_DEFFREQ);