diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2018-02-28 14:39:36 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2018-02-28 14:39:36 +0000 |
commit | cc708ee9baeaee109d04e2ab9549c0a3949604b2 (patch) | |
tree | 1e06eeea4bf92bae979b923b2ca39220240613e6 /sys/dev/pci/if_iwm.c | |
parent | 3ca43ed4e04cde2942cc47326a0ab51529a8017f (diff) |
Ignore 'fseq version mismatch' notifications from 8265 iwm(4) firmware.
Kills "iwm0: unhandled firmware response 0xff/0xb8000010 rx ring" dmesg spam.
Patch by jes@posteo via tech@, who found the corresponding change in Linux:
https://patchwork.kernel.org/patch/9869017/
Diffstat (limited to 'sys/dev/pci/if_iwm.c')
-rw-r--r-- | sys/dev/pci/if_iwm.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/pci/if_iwm.c b/sys/dev/pci/if_iwm.c index 476c61f0b3d..fa3c1c82cc8 100644 --- a/sys/dev/pci/if_iwm.c +++ b/sys/dev/pci/if_iwm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwm.c,v 1.225 2018/02/25 12:40:51 stsp Exp $ */ +/* $OpenBSD: if_iwm.c,v 1.226 2018/02/28 14:39:35 stsp Exp $ */ /* * Copyright (c) 2014, 2016 genua gmbh <info@genua.de> @@ -7316,6 +7316,10 @@ iwm_notif_intr(struct iwm_softc *sc) break; } + case IWM_WIDE_ID(IWM_SYSTEM_GROUP, + IWM_FSEQ_VER_MISMATCH_NOTIFICATION): + break; + /* * Firmware versions 21 and 22 generate some DEBUG_LOG_MSG * messages. Just ignore them for now. |