diff options
| author | msaitoh <msaitoh@NetBSD.org> | 2016-07-14 04:19:26 +0000 |
|---|---|---|
| committer | msaitoh <msaitoh@NetBSD.org> | 2016-07-14 04:19:26 +0000 |
| commit | d6ea4408ca56aec0f951d081215eae0c02ccd042 (patch) | |
| tree | 247303fcb93e654baddf46cc06f101a3a2d6f575 /sys/dev/mca | |
| parent | ab58a4fa0d224c6f4b253b8102d9f43c82f67570 (diff) | |
KNF. No functional change.
Diffstat (limited to 'sys/dev/mca')
| -rw-r--r-- | sys/dev/mca/if_tr_mca.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/mca/if_tr_mca.c b/sys/dev/mca/if_tr_mca.c index 296e2cbf367..e1e7a778774 100644 --- a/sys/dev/mca/if_tr_mca.c +++ b/sys/dev/mca/if_tr_mca.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_tr_mca.c,v 1.23 2013/11/08 03:12:17 christos Exp $ */ +/* $NetBSD: if_tr_mca.c,v 1.24 2016/07/14 04:19:27 msaitoh Exp $ */ /*_ * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_tr_mca.c,v 1.23 2013/11/08 03:12:17 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_tr_mca.c,v 1.24 2016/07/14 04:19:27 msaitoh Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -219,7 +219,8 @@ tr_mca_attach(device_t parent, device_t self, void *aux) /* establish interrupt handler */ sc->sc_ih = mca_intr_establish(ma->ma_mc, irq, IPL_NET, tr_intr, sc); if (sc->sc_ih == NULL) { - aprint_error_dev(self, "couldn't establish interrupt handler\n"); + aprint_error_dev(self, + "couldn't establish interrupt handler\n"); return; } |
