summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorKevin Lo <kevlo@cvs.openbsd.org>2021-09-02 13:39:35 +0000
committerKevin Lo <kevlo@cvs.openbsd.org>2021-09-02 13:39:35 +0000
commitb3ad5047715256acb90aaaa38c197aec800bdb44 (patch)
tree537d79d063fd11d328a706ec0656fb9d9c6e878e /sys/dev
parentf2ca895a570896a3932e0778cc994a1959eb0617 (diff)
The PCI_PRODUCT_INTEL_WL_22500_1 device is part of the 22000
family (discrete) not integrated. ok stsp@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_iwx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwx.c b/sys/dev/pci/if_iwx.c
index 096caf79896..b609c553875 100644
--- a/sys/dev/pci/if_iwx.c
+++ b/sys/dev/pci/if_iwx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iwx.c,v 1.99 2021/08/31 13:19:32 stsp Exp $ */
+/* $OpenBSD: if_iwx.c,v 1.100 2021/09/02 13:39:34 kevlo Exp $ */
/*
* Copyright (c) 2014, 2016 genua gmbh <info@genua.de>
@@ -9343,7 +9343,7 @@ iwx_attach(struct device *parent, struct device *self, void *aux)
case PCI_PRODUCT_INTEL_WL_22500_1:
sc->sc_fwname = "iwx-cc-a0-63";
sc->sc_device_family = IWX_DEVICE_FAMILY_22000;
- sc->sc_integrated = 1;
+ sc->sc_integrated = 0;
sc->sc_ltr_delay = IWX_SOC_FLAGS_LTR_APPLY_DELAY_NONE;
sc->sc_low_latency_xtal = 0;
sc->sc_xtal_latency = 0;