Minor KNF.

This commit is contained in:
peter 2005-10-23 15:15:39 +00:00
parent 14b26643ea
commit d62e20c6c5

View File

@ -1,4 +1,4 @@
/* $NetBSD: softintr.c,v 1.9 2005/01/01 10:39:30 toshii Exp $ */
/* $NetBSD: softintr.c,v 1.10 2005/10/23 15:15:39 peter Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: softintr.c,v 1.9 2005/01/01 10:39:30 toshii Exp $");
__KERNEL_RCSID(0, "$NetBSD: softintr.c,v 1.10 2005/10/23 15:15:39 peter Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -73,7 +73,7 @@ softintr_establish(int level, void (*fun)(void *), void *arg)
sh = malloc(sizeof(*sh), M_DEVBUF, M_NOWAIT);
if (sh == NULL)
return(NULL);
return NULL;
sh->sh_fun = fun;
sh->sh_level = ipl_to_spl(level);