Module Name: src
Committed By: christos
Date: Thu Oct 17 20:54:24 UTC 2013
Modified Files:
src/sys/coda: coda_psdev.c
Log Message:
move module code inside module ifdef
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sys/coda/coda_psdev.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/coda/coda_psdev.c
diff -u src/sys/coda/coda_psdev.c:1.49 src/sys/coda/coda_psdev.c:1.50
--- src/sys/coda/coda_psdev.c:1.49 Sat Aug 4 08:31:57 2012
+++ src/sys/coda/coda_psdev.c Thu Oct 17 16:54:24 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: coda_psdev.c,v 1.49 2012/08/04 12:31:57 christos Exp $ */
+/* $NetBSD: coda_psdev.c,v 1.50 2013/10/17 20:54:24 christos Exp $ */
/*
*
@@ -54,7 +54,7 @@
/* These routines are the device entry points for Venus. */
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: coda_psdev.c,v 1.49 2012/08/04 12:31:57 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: coda_psdev.c,v 1.50 2013/10/17 20:54:24 christos Exp $");
extern int coda_nc_initialized; /* Set if cache has been initialized */
@@ -730,15 +730,15 @@ MODULE(MODULE_CLASS_DRIVER, vcoda, NULL)
static int
vcoda_modcmd(modcmd_t cmd, void *arg)
{
- int cmajor, dmajor, error = 0;
-
- dmajor = cmajor = -1;
+ int error = 0;
switch (cmd) {
case MODULE_CMD_INIT:
#ifdef _MODULE
+ int cmajor, dmajor;
vcodaattach(NVCODA);
+ dmajor = cmajor = -1;
return devsw_attach("vcoda", NULL, &dmajor,
&vcoda_cdevsw, &cmajor);
#endif