Module Name: src Committed By: pooka Date: Wed Oct 20 18:48:14 UTC 2010
Modified Files: src/sys/rump/dev/lib/libsysmon: component.c Log Message: Attach swsensor only once (it attaches automatically via MODULE like everything else that is linked in as a module). To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/rump/dev/lib/libsysmon/component.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/rump/dev/lib/libsysmon/component.c diff -u src/sys/rump/dev/lib/libsysmon/component.c:1.5 src/sys/rump/dev/lib/libsysmon/component.c:1.6 --- src/sys/rump/dev/lib/libsysmon/component.c:1.5 Tue Oct 19 11:58:01 2010 +++ src/sys/rump/dev/lib/libsysmon/component.c Wed Oct 20 18:48:13 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: component.c,v 1.5 2010/10/19 11:58:01 pgoyette Exp $ */ +/* $NetBSD: component.c,v 1.6 2010/10/20 18:48:13 pooka Exp $ */ /* * Copyright (c) 2010 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.5 2010/10/19 11:58:01 pgoyette Exp $"); +__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.6 2010/10/20 18:48:13 pooka Exp $"); #include <sys/param.h> #include <sys/conf.h> @@ -79,5 +79,4 @@ sysmon_wdog_init(); rump_pdev_add(swwdogattach, 0); - rump_pdev_add(swsensorattach, 0); }