From 3ad06fbb4664405b70c577a28cfcf91eef8ca50c Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Thu, 23 Sep 2004 12:21:11 +0000 Subject: Remove bogus cdevsw frobbing code which tries to prevent double loading of modules. MODULE_VERSION() should be used for this I belive. --- sys/dev/ctau/if_ct.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'sys/dev/ctau') diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c index a05527c71579..9cc08cd82bc2 100644 --- a/sys/dev/ctau/if_ct.c +++ b/sys/dev/ctau/if_ct.c @@ -2338,23 +2338,10 @@ static int ng_ct_disconnect (hook_p hook) static int ct_modevent (module_t mod, int type, void *unused) { - struct cdev *dev; static int load_count = 0; - struct cdevsw *cdsw; -#if __FreeBSD_version >= 502103 - dev = findcdev (makedev(CDEV_MAJOR, 0)); -#else - dev = makedev (CDEV_MAJOR, 0); -#endif switch (type) { case MOD_LOAD: - if (dev != NULL && - (cdsw = devsw (dev)) && - cdsw->d_maj == CDEV_MAJOR) { - printf ("Tau-ISA driver is already in system\n"); - return (ENXIO); - } #if __FreeBSD_version >= 500000 && defined NETGRAPH if (ng_newtype (&typestruct)) printf ("Failed to register ng_ct\n"); -- cgit v1.2.3