diff options
author | jkim <jkim@FreeBSD.org> | 2009-12-07 21:24:07 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2009-12-07 21:24:07 +0000 |
commit | 37c0b1019a56f5828b614a8d77823ae72b9174b9 (patch) | |
tree | ea1888158b63ca824854e67bbf0465ba7a4ea9d6 /sys/dev/mfi | |
parent | d7dd17cebe2cf34b49ea253ab1763b7bd9b6a393 (diff) | |
download | FreeBSD-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')
-rw-r--r-- | sys/dev/mfi/mfi.c | 19 |
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 |