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

Pull EDAC fixes from Borislav Petkov:
"Fix altera and xgene EDAC drivers to propagate the correct error code
from platform_get_irq() so that deferred probing still works"

* tag 'edac_urgent_for_v5.17_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras:
EDAC/xgene: Fix deferred probing
EDAC/altera: Fix deferred probing

+2 -2
+1 -1
drivers/edac/altera_edac.c
··· 350 350 if (irq < 0) { 351 351 edac_printk(KERN_ERR, EDAC_MC, 352 352 "No irq %d in DT\n", irq); 353 - return -ENODEV; 353 + return irq; 354 354 } 355 355 356 356 /* Arria10 has a 2nd IRQ */
+1 -1
drivers/edac/xgene_edac.c
··· 1919 1919 irq = platform_get_irq_optional(pdev, i); 1920 1920 if (irq < 0) { 1921 1921 dev_err(&pdev->dev, "No IRQ resource\n"); 1922 - rc = -EINVAL; 1922 + rc = irq; 1923 1923 goto out_err; 1924 1924 } 1925 1925 rc = devm_request_irq(&pdev->dev, irq,