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.kernel.org/pub/scm/linux/kernel/git/clk/linux

Pull clock fix from Stephen Boyd:
"A one-liner for a regression found in the PXA clock driver"

* tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux:
clk: pxa: pxa3xx: fix CKEN register access

+1 -1
+1 -1
drivers/clk/pxa/clk-pxa3xx.c
··· 126 126 PARENTS(pxa3xx_sbus) = { "ring_osc_60mhz", "system_bus" }; 127 127 PARENTS(pxa3xx_smemcbus) = { "ring_osc_60mhz", "smemc" }; 128 128 129 - #define CKEN_AB(bit) ((CKEN_ ## bit > 31) ? &CKENA : &CKENB) 129 + #define CKEN_AB(bit) ((CKEN_ ## bit > 31) ? &CKENB : &CKENA) 130 130 #define PXA3XX_CKEN(dev_id, con_id, parents, mult_lp, div_lp, mult_hp, \ 131 131 div_hp, bit, is_lp, flags) \ 132 132 PXA_CKEN(dev_id, con_id, bit, parents, mult_lp, div_lp, \