diff options
| author | gdt <gdt@NetBSD.org> | 2019-07-29 12:07:57 +0000 |
|---|---|---|
| committer | gdt <gdt@NetBSD.org> | 2019-07-29 12:07:57 +0000 |
| commit | 16a8d9bcb3dba291e1d22837e134b0efa36cded2 (patch) | |
| tree | 195f1e2cad4443cc023e1d44814f7735eb520938 /sys/dev/ic | |
| parent | 1f84f0afc7821d241a8928465a0a60f9974f20b6 (diff) | |
sys/dev/ic/mfi.c: Add missing break in switch
(The entire switch is guarded by MFI_DEBUG and is known not to build.)
Reported by Oskar.
Diffstat (limited to 'sys/dev/ic')
| -rw-r--r-- | sys/dev/ic/mfi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/ic/mfi.c b/sys/dev/ic/mfi.c index e188b69902a..1b1436a3902 100644 --- a/sys/dev/ic/mfi.c +++ b/sys/dev/ic/mfi.c @@ -1,4 +1,4 @@ -/* $NetBSD: mfi.c,v 1.60 2018/11/24 18:10:29 bouyer Exp $ */ +/* $NetBSD: mfi.c,v 1.61 2019/07/29 12:07:57 gdt Exp $ */ /* $OpenBSD: mfi.c,v 1.66 2006/11/28 23:59:45 dlg Exp $ */ /* @@ -73,7 +73,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: mfi.c,v 1.60 2018/11/24 18:10:29 bouyer Exp $"); +__KERNEL_RCSID(0, "$NetBSD: mfi.c,v 1.61 2019/07/29 12:07:57 gdt Exp $"); #include "bio.h" @@ -869,6 +869,7 @@ mfi_get_bbu(struct mfi_softc *sc, struct mfi_bbu_status *stat) stat->detail.bbu.remaining_capacity , stat->detail.bbu.full_charge_capacity , stat->detail.bbu.is_SOH_good); + break; default: printf("\n"); } |
