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 'edac_urgent_for_v6.14_rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras

Pull EDAC fix from Borislav Petkov:

- Have qcom_edac use the correct interrupt enable register to configure
the RAS interrupt lines

* tag 'edac_urgent_for_v6.14_rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras:
EDAC/qcom: Correct interrupt enable register configuration

+2 -2
+2 -2
drivers/edac/qcom_edac.c
··· 95 95 * Configure interrupt enable registers such that Tag, Data RAM related 96 96 * interrupts are propagated to interrupt controller for servicing 97 97 */ 98 - ret = regmap_update_bits(llcc_bcast_regmap, drv->edac_reg_offset->cmn_interrupt_2_enable, 98 + ret = regmap_update_bits(llcc_bcast_regmap, drv->edac_reg_offset->cmn_interrupt_0_enable, 99 99 TRP0_INTERRUPT_ENABLE, 100 100 TRP0_INTERRUPT_ENABLE); 101 101 if (ret) ··· 113 113 if (ret) 114 114 return ret; 115 115 116 - ret = regmap_update_bits(llcc_bcast_regmap, drv->edac_reg_offset->cmn_interrupt_2_enable, 116 + ret = regmap_update_bits(llcc_bcast_regmap, drv->edac_reg_offset->cmn_interrupt_0_enable, 117 117 DRP0_INTERRUPT_ENABLE, 118 118 DRP0_INTERRUPT_ENABLE); 119 119 if (ret)