From 989f6e4d42e8aa7b63d716d67f53553801d4b8a5 Mon Sep 17 00:00:00 2001 From: christos Date: Wed, 30 Aug 2006 16:45:40 +0000 Subject: avoid empty if body. --- sys/dev/isa/if_ix.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/isa/if_ix.c b/sys/dev/isa/if_ix.c index a017a1bc2ca..a1bbdd1fbf4 100644 --- a/sys/dev/isa/if_ix.c +++ b/sys/dev/isa/if_ix.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_ix.c,v 1.23 2005/12/11 12:22:02 christos Exp $ */ +/* $NetBSD: if_ix.c,v 1.24 2006/08/30 16:45:40 christos Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if_ix.c,v 1.23 2005/12/11 12:22:02 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_ix.c,v 1.24 2006/08/30 16:45:40 christos Exp $"); #include #include @@ -1012,9 +1012,10 @@ ix_attach(parent, self, aux) isc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq, IST_EDGE, IPL_NET, i82586_intr, sc); - if (isc->sc_ih == NULL) + if (isc->sc_ih == NULL) { DPRINTF(("\n%s: can't establish interrupt\n", sc->sc_dev.dv_xname)); + } } CFATTACH_DECL(ix, sizeof(struct ix_softc), -- cgit