Style nitz.

This commit is contained in:
elad 2007-02-05 17:36:12 +00:00
parent 87cc82cf9b
commit 3dcf1cc6ec

View File

@ -1,9 +1,9 @@
/* $NetBSD: lkminit_skel.c,v 1.1 2007/02/04 22:53:09 elad Exp $ */ /* $NetBSD: lkminit_skel.c,v 1.2 2007/02/05 17:36:12 elad Exp $ */
/* This code is in the public domain. */ /* This code is in the public domain. */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: lkminit_skel.c,v 1.1 2007/02/04 22:53:09 elad Exp $"); __KERNEL_RCSID(0, "$NetBSD: lkminit_skel.c,v 1.2 2007/02/05 17:36:12 elad Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/lkm.h> #include <sys/lkm.h>
@ -19,10 +19,10 @@ skelmod_handle(struct lkm_table *lkmtp, int cmd)
{ {
int error = 0; int error = 0;
switch(cmd) { switch (cmd) {
case LKM_E_LOAD: case LKM_E_LOAD:
if(lkmexists(lkmtp)) if (lkmexists(lkmtp))
return( EEXIST); return (EEXIST);
printf("hello world\n"); printf("hello world\n");