Module Name: src
Committed By: joerg
Date: Sat Feb 21 12:32:23 UTC 2015
Modified Files:
src/sys/dev/iscsi: iscsi_main.c
Log Message:
Simplify.
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/iscsi/iscsi_main.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/dev/iscsi/iscsi_main.c
diff -u src/sys/dev/iscsi/iscsi_main.c:1.10 src/sys/dev/iscsi/iscsi_main.c:1.11
--- src/sys/dev/iscsi/iscsi_main.c:1.10 Mon Nov 24 21:49:17 2014
+++ src/sys/dev/iscsi/iscsi_main.c Sat Feb 21 12:32:23 2015
@@ -501,13 +501,13 @@ iscsi_done(ccb_t *ccb)
}
}
+#ifdef _MODULE
/* Kernel Module support */
#include <sys/module.h>
MODULE(MODULE_CLASS_DRIVER, iscsi, NULL);
-#ifdef _MODULE
static const struct cfiattrdata ibescsi_info = { "scsi", 1,
{{"channel", "-1", -1},}
};
@@ -528,19 +528,15 @@ static struct cfdata iscsi_cfdata[] = {
},
{ NULL, NULL, 0, 0, NULL, 0, NULL }
};
-#endif
static int
iscsi_modcmd(modcmd_t cmd, void *arg)
{
-#ifdef _MODULE
devmajor_t cmajor = NODEVMAJOR, bmajor = NODEVMAJOR;
int error;
-#endif
switch (cmd) {
case MODULE_CMD_INIT:
-#ifdef _MODULE
error = config_cfdriver_attach(&iscsi_cd);
if (error) {
return error;
@@ -581,12 +577,10 @@ iscsi_modcmd(modcmd_t cmd, void *arg)
config_cfdriver_detach(&iscsi_cd);
return ENXIO;
}
-#endif
return 0;
break;
case MODULE_CMD_FINI:
-#ifdef _MODULE
error = config_cfdata_detach(iscsi_cfdata);
if (error)
return error;
@@ -594,7 +588,6 @@ iscsi_modcmd(modcmd_t cmd, void *arg)
config_cfattach_detach(iscsi_cd.cd_name, &iscsi_ca);
config_cfdriver_detach(&iscsi_cd);
devsw_detach(NULL, &iscsi_cdevsw);
-#endif
return 0;
break;
@@ -607,3 +600,4 @@ iscsi_modcmd(modcmd_t cmd, void *arg)
break;
}
}
+#endif /* _MODULE */