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 'libata-5.15-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata

Pull libata fix from Damien Le Moal:
"A single fix in this pull request addressing an invalid error code
return in the sata_mv driver (from Zheyu)"

* tag 'libata-5.15-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata:
ata: sata_mv: Fix the error handling of mv_chip_id()

+2 -2
+2 -2
drivers/ata/sata_mv.c
··· 3896 3896 break; 3897 3897 3898 3898 default: 3899 - dev_err(host->dev, "BUG: invalid board index %u\n", board_idx); 3900 - return 1; 3899 + dev_alert(host->dev, "BUG: invalid board index %u\n", board_idx); 3900 + return -EINVAL; 3901 3901 } 3902 3902 3903 3903 hpriv->hp_flags = hp_flags;