The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=247d24a694af84f0c80708ff0a6c4baa7fcca14d
commit 247d24a694af84f0c80708ff0a6c4baa7fcca14d Author: Dmitry Borisov <[email protected]> AuthorDate: 2025-10-29 14:06:57 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2026-01-09 21:23:42 +0000 ata-serverworks: Fix incorrect port count for BCM5770 SATA controller The 1166:0241 PCI device has 8 ports instead of 4. Signed-off-by: Dmitry Borisov <[email protected]> Reviewed by: imp, jlduran Pull Request: https://github.com/freebsd/freebsd-src/pull/1883 --- sys/dev/ata/ata-pci.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/ata/ata-pci.h b/sys/dev/ata/ata-pci.h index 630d0184c820..5ff3e344c411 100644 --- a/sys/dev/ata/ata-pci.h +++ b/sys/dev/ata/ata-pci.h @@ -430,8 +430,8 @@ struct ata_pci_controller { #define ATA_HT1000_S1 0x024b1166 #define ATA_HT1000_S2 0x024a1166 #define ATA_K2 0x02401166 -#define ATA_FRODO4 0x02411166 -#define ATA_FRODO8 0x02421166 +#define ATA_FRODO8 0x02411166 +#define ATA_FRODO4 0x02421166 #define ATA_SILICON_IMAGE_ID 0x1095 #define ATA_SII3114 0x31141095
