From: stsp Date: Mon, 6 Mar 2023 11:30:46 +0000 (+0000) Subject: ignore iwx DATA_PATH group notification 0xf8 X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=36d3d54bbb0df248874261016f8f3b8aa4aef467;p=openbsd ignore iwx DATA_PATH group notification 0xf8 Undocumented and ignored by the Linux driver, too. Apparently only used by the Windows driver. Confirmed by Johannes Berg. --- diff --git a/sys/dev/pci/if_iwx.c b/sys/dev/pci/if_iwx.c index 43d9bd78cc0..b0f217634d7 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.165 2023/03/06 11:28:01 stsp Exp $ */ +/* $OpenBSD: if_iwx.c,v 1.166 2023/03/06 11:30:46 stsp Exp $ */ /* * Copyright (c) 2014, 2016 genua gmbh @@ -10135,6 +10135,10 @@ iwx_rx_pkt(struct iwx_softc *sc, struct iwx_rx_data *data, struct mbuf_list *ml) case IWX_WIDE_ID(IWX_DATA_PATH_GROUP, IWX_RLC_CONFIG_CMD): break; + /* undocumented notification from iwx-ty-a0-gf-a0-77 image */ + case IWX_WIDE_ID(IWX_DATA_PATH_GROUP, 0xf8): + break; + case IWX_WIDE_ID(IWX_REGULATORY_AND_NVM_GROUP, IWX_PNVM_INIT_COMPLETE): sc->sc_init_complete |= IWX_PNVM_COMPLETE;