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

Pull EDAC fix from Borislav Petkov:
"Limit a register write width in altera_edac to avoid hw errors"

* tag 'edac_urgent_for_v6.16_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras:
EDAC/altera: Use correct write width with the INTTEST register

+3 -3
+3 -3
drivers/edac/altera_edac.c
··· 1746 1746 1747 1747 local_irq_save(flags); 1748 1748 if (trig_type == ALTR_UE_TRIGGER_CHAR) 1749 - writel(priv->ue_set_mask, set_addr); 1749 + writew(priv->ue_set_mask, set_addr); 1750 1750 else 1751 - writel(priv->ce_set_mask, set_addr); 1751 + writew(priv->ce_set_mask, set_addr); 1752 1752 1753 1753 /* Ensure the interrupt test bits are set */ 1754 1754 wmb(); ··· 1778 1778 1779 1779 local_irq_save(flags); 1780 1780 if (trig_type == ALTR_UE_TRIGGER_CHAR) { 1781 - writel(priv->ue_set_mask, set_addr); 1781 + writew(priv->ue_set_mask, set_addr); 1782 1782 } else { 1783 1783 /* Setup read/write of 4 bytes */ 1784 1784 writel(ECC_WORD_WRITE, drvdata->base + ECC_BLK_DBYTECTRL_OFST);