summaryrefslogtreecommitdiff
path: root/sys/dev/ismt
diff options
context:
space:
mode:
authorJustin Hibbits <jhibbits@FreeBSD.org>2020-03-06 16:52:20 +0000
committerJustin Hibbits <jhibbits@FreeBSD.org>2020-03-06 16:52:20 +0000
commit7a8095c43b078b8ce8d034292fe9c58c94113ca5 (patch)
tree8c3f716eb2a4659d133bfa3c13e360afd8296754 /sys/dev/ismt
parentac0cd1b9e7c8f4a4abf141910e34162693ebb9ac (diff)
Notes
Diffstat (limited to 'sys/dev/ismt')
-rw-r--r--sys/dev/ismt/ismt.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/ismt/ismt.c b/sys/dev/ismt/ismt.c
index 3fbcfed0af62..88cdaac2dfd8 100644
--- a/sys/dev/ismt/ismt.c
+++ b/sys/dev/ismt/ismt.c
@@ -717,6 +717,7 @@ fail:
#define ID_INTEL_S1200_SMT0 0x0c598086
#define ID_INTEL_S1200_SMT1 0x0c5a8086
#define ID_INTEL_C2000_SMT 0x1f158086
+#define ID_INTEL_C3000_SMT 0x19ac8086
static int
ismt_probe(device_t dev)
@@ -733,6 +734,9 @@ ismt_probe(device_t dev)
case ID_INTEL_C2000_SMT:
desc = "Atom Processor C2000 SMBus 2.0";
break;
+ case ID_INTEL_C3000_SMT:
+ desc = "Atom Processor C3000 SMBus 2.0";
+ break;
default:
return (ENXIO);
}