diff options
Diffstat (limited to 'src/intel_module.c')
-rw-r--r-- | src/intel_module.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/intel_module.c b/src/intel_module.c index 689c0dda..d3dca833 100644 --- a/src/intel_module.c +++ b/src/intel_module.c @@ -126,6 +126,9 @@ static const struct intel_device_info intel_skylake_info = { .gen = 0110, }; +static const struct intel_device_info intel_broxton_info = { + .gen = 0111, +}; static const SymTabRec intel_chipsets[] = { {PCI_CHIP_I810, "i810"}, @@ -324,6 +327,8 @@ static const struct pci_id_match intel_device_match[] = { INTEL_SKL_IDS(&intel_skylake_info), + INTEL_BXT_IDS(&intel_broxton_info), + INTEL_VGA_DEVICE(PCI_MATCH_ANY, &intel_generic_info), #endif |