aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ichsmb/ichsmb_pci.c
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2013-11-15 13:19:15 +0000
committerAlexander Motin <mav@FreeBSD.org>2013-11-15 13:19:15 +0000
commitf00fac180f007b4ae7bf67c32c61b6883056fcb7 (patch)
treeae013368429b4dc9d58e2dd376c2d79f23d50972 /sys/dev/ichsmb/ichsmb_pci.c
parent667b72800a17a36e254d867d5ed7dfc1e456e8ac (diff)
downloadsrc-f00fac180f007b4ae7bf67c32c61b6883056fcb7.tar.gz
src-f00fac180f007b4ae7bf67c32c61b6883056fcb7.zip
Add ID for Intel Avoton SMBus controller.
Notes
Notes: svn path=/head/; revision=258169
Diffstat (limited to 'sys/dev/ichsmb/ichsmb_pci.c')
-rw-r--r--sys/dev/ichsmb/ichsmb_pci.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c
index 049a98b621a0..906c41d66c18 100644
--- a/sys/dev/ichsmb/ichsmb_pci.c
+++ b/sys/dev/ichsmb/ichsmb_pci.c
@@ -85,6 +85,7 @@ __FBSDID("$FreeBSD$");
#define ID_PATSBURG 0x1d228086
#define ID_CPT 0x1c228086
#define ID_PPT 0x1e228086
+#define ID_AVOTON 0x1f3c8086
#define ID_COLETOCRK 0x23B08086
#define ID_LPT 0x8c228086
@@ -190,6 +191,9 @@ ichsmb_pci_probe(device_t dev)
case ID_PPT:
device_set_desc(dev, "Intel Panther Point SMBus controller");
break;
+ case ID_AVOTON:
+ device_set_desc(dev, "Intel Avoton SMBus controller");
+ break;
case ID_LPT:
device_set_desc(dev, "Intel Lynx Point SMBus controller");
break;