diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2017-08-12 09:13:07 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2017-08-12 09:13:07 +0000 |
commit | b6e551b4a39f587e9d2878ec9b2bc251d1d1a2c0 (patch) | |
tree | 652f8d10429086977dcef7c86b328d45f391fafa | |
parent | cba6ef13f1b4cc5cd5036691532ad3fe32303608 (diff) |
In iwn(4), fix CID 1199266 "Missing comma in a string array"; only affects
fatal firmware error debug output.
-rw-r--r-- | sys/dev/pci/if_iwnreg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwnreg.h b/sys/dev/pci/if_iwnreg.h index e08d99d0a34..b4569eacd5b 100644 --- a/sys/dev/pci/if_iwnreg.h +++ b/sys/dev/pci/if_iwnreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwnreg.h,v 1.53 2016/04/28 08:28:18 stsp Exp $ */ +/* $OpenBSD: if_iwnreg.h,v 1.54 2017/08/12 09:13:06 stsp Exp $ */ /*- * Copyright (c) 2007, 2008 @@ -1974,7 +1974,7 @@ static const char * const iwn_fw_errmsg[] = { "NMI_INTERRUPT_DATA_ACTION_PT", "NMI_TRM_HW_ER", "NMI_INTERRUPT_TRM", - "NMI_INTERRUPT_BREAKPOINT" + "NMI_INTERRUPT_BREAKPOINT", "DEBUG_0", "DEBUG_1", "DEBUG_2", |