summaryrefslogtreecommitdiffstats
path: root/sys/dev/mfi/mfi.c
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2009-12-07 21:24:07 +0000
committerjkim <jkim@FreeBSD.org>2009-12-07 21:24:07 +0000
commit37c0b1019a56f5828b614a8d77823ae72b9174b9 (patch)
treeea1888158b63ca824854e67bbf0465ba7a4ea9d6 /sys/dev/mfi/mfi.c
parentd7dd17cebe2cf34b49ea253ab1763b7bd9b6a393 (diff)
downloadFreeBSD-src-37c0b1019a56f5828b614a8d77823ae72b9174b9.zip
FreeBSD-src-37c0b1019a56f5828b614a8d77823ae72b9174b9.tar.gz
Revert r200231. It was already taken cared by jhb long ago.
Pointed out by: jhb Pointy hat: jkim
Diffstat (limited to 'sys/dev/mfi/mfi.c')
-rw-r--r--sys/dev/mfi/mfi.c19
1 files changed, 3 insertions, 16 deletions
diff --git a/sys/dev/mfi/mfi.c b/sys/dev/mfi/mfi.c
index 61abca1..eb18ffe 100644
--- a/sys/dev/mfi/mfi.c
+++ b/sys/dev/mfi/mfi.c
@@ -1081,22 +1081,9 @@ static void
mfi_decode_evt(struct mfi_softc *sc, struct mfi_evt_detail *detail)
{
- switch (detail->class.members.class) {
- case MFI_EVT_CLASS_DEBUG:
- case MFI_EVT_CLASS_PROGRESS:
- case MFI_EVT_CLASS_INFO:
-#ifndef MFI_DEBUG
- if (!bootverbose)
- return;
- /* FALLTHROUGH */
-#endif
- default:
- device_printf(sc->mfi_dev, "%d (%s/0x%04x/%s) - %s\n",
- detail->seq, format_timestamp(detail->time),
- detail->class.members.locale,
- format_class(detail->class.members.class),
- detail->description);
- }
+ device_printf(sc->mfi_dev, "%d (%s/0x%04x/%s) - %s\n", detail->seq,
+ format_timestamp(detail->time), detail->class.members.locale,
+ format_class(detail->class.members.class), detail->description);
}
static int
OpenPOWER on IntegriCloud