Add Atom C3000 (Denverton) SMT PCI ID

MFC after:	3 days
Sponsored by:	Juniper Networks, Inc
This commit is contained in:
Justin Hibbits 2020-03-03 22:23:56 +00:00
parent 7bef70737b
commit 5df2e54c42

View file

@ -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);
}