summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_iwmvar.h
diff options
context:
space:
mode:
authorStefan Sperling <stsp@cvs.openbsd.org>2019-11-04 11:59:53 +0000
committerStefan Sperling <stsp@cvs.openbsd.org>2019-11-04 11:59:53 +0000
commit4946e9548bd026109e5785b9fe5a08de5abb475c (patch)
tree26ff5fe86da785afd33a97e2ad10b9e63ee8d9ce /sys/dev/pci/if_iwmvar.h
parentab71acf91c43de99ebd2e86d8466e5d113915b64 (diff)
Support iwm(4) firmware images with ucode_api flags larger than 32 bits.
ok patrick@
Diffstat (limited to 'sys/dev/pci/if_iwmvar.h')
-rw-r--r--sys/dev/pci/if_iwmvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwmvar.h b/sys/dev/pci/if_iwmvar.h
index 0d16f393940..52e718ddcee 100644
--- a/sys/dev/pci/if_iwmvar.h
+++ b/sys/dev/pci/if_iwmvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iwmvar.h,v 1.43 2019/11/04 11:29:11 stsp Exp $ */
+/* $OpenBSD: if_iwmvar.h,v 1.44 2019/11/04 11:59:52 stsp Exp $ */
/*
* Copyright (c) 2014 genua mbh <info@genua.de>
@@ -434,7 +434,7 @@ struct iwm_softc {
int sc_capaflags;
int sc_capa_max_probe_len;
int sc_capa_n_scan_channels;
- uint32_t sc_ucode_api;
+ uint8_t sc_ucode_api[howmany(IWM_NUM_UCODE_TLV_API, NBBY)];
uint8_t sc_enabled_capa[howmany(IWM_NUM_UCODE_TLV_CAPA, NBBY)];
char sc_fw_mcc[3];