svn commit: r265431 - stable/9/sys/dev/ahci
Alexander Motin
mav at FreeBSD.org
Tue May 6 09:55:50 UTC 2014
Author: mav
Date: Tue May 6 09:55:49 2014
New Revision: 265431
URL: http://svnweb.freebsd.org/changeset/base/265431
Log:
MFC r264610:
Correct AMD chipsets identification.
Modified:
stable/9/sys/dev/ahci/ahci.c
Directory Properties:
stable/9/ (props changed)
stable/9/sys/ (props changed)
stable/9/sys/dev/ (props changed)
Modified: stable/9/sys/dev/ahci/ahci.c
==============================================================================
--- stable/9/sys/dev/ahci/ahci.c Tue May 6 09:54:24 2014 (r265430)
+++ stable/9/sys/dev/ahci/ahci.c Tue May 6 09:55:49 2014 (r265431)
@@ -138,13 +138,13 @@ static struct {
"\014ALTSIG" \
"\015NOMSI"
} ahci_ids[] = {
- {0x43801002, 0x00, "ATI IXP600", AHCI_Q_NOMSI},
- {0x43901002, 0x00, "ATI IXP700", 0},
- {0x43911002, 0x00, "ATI IXP700", 0},
- {0x43921002, 0x00, "ATI IXP700", 0},
- {0x43931002, 0x00, "ATI IXP700", 0},
- {0x43941002, 0x00, "ATI IXP800", 0},
- {0x43951002, 0x00, "ATI IXP800", 0},
+ {0x43801002, 0x00, "AMD SB600", AHCI_Q_NOMSI},
+ {0x43901002, 0x00, "AMD SB7x0/SB8x0/SB9x0", 0},
+ {0x43911002, 0x00, "AMD SB7x0/SB8x0/SB9x0", 0},
+ {0x43921002, 0x00, "AMD SB7x0/SB8x0/SB9x0", 0},
+ {0x43931002, 0x00, "AMD SB7x0/SB8x0/SB9x0", 0},
+ {0x43941002, 0x00, "AMD SB7x0/SB8x0/SB9x0", 0},
+ {0x43951002, 0x00, "AMD SB8x0/SB9x0", 0},
{0x78001022, 0x00, "AMD Hudson-2", 0},
{0x78011022, 0x00, "AMD Hudson-2", 0},
{0x78021022, 0x00, "AMD Hudson-2", 0},
More information about the svn-src-stable-9
mailing list