diff options
| author | pgoyette <pgoyette@NetBSD.org> | 2010-10-19 11:58:00 +0000 |
|---|---|---|
| committer | pgoyette <pgoyette@NetBSD.org> | 2010-10-19 11:58:00 +0000 |
| commit | adb48c7f005facd6d646d120b83fb130c176d52b (patch) | |
| tree | 12e9580536e60a4349a5d0eb2c6141f2121d9ba2 /sys/rump/dev/lib/libsysmon/component.c | |
| parent | 3ae668c1c8134c4be69ca112fe7411afcef0a08e (diff) | |
Build the new swsensor(4) device and add to set lists
Diffstat (limited to 'sys/rump/dev/lib/libsysmon/component.c')
| -rw-r--r-- | sys/rump/dev/lib/libsysmon/component.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/rump/dev/lib/libsysmon/component.c b/sys/rump/dev/lib/libsysmon/component.c index 8762060eb25..c6baecdec9f 100644 --- a/sys/rump/dev/lib/libsysmon/component.c +++ b/sys/rump/dev/lib/libsysmon/component.c @@ -1,4 +1,4 @@ -/* $NetBSD: component.c,v 1.4 2010/10/04 15:57:27 pgoyette Exp $ */ +/* $NetBSD: component.c,v 1.5 2010/10/19 11:58:01 pgoyette 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.4 2010/10/04 15:57:27 pgoyette Exp $"); +__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.5 2010/10/19 11:58:01 pgoyette Exp $"); #include <sys/param.h> #include <sys/conf.h> @@ -43,6 +43,7 @@ __KERNEL_RCSID(0, "$NetBSD: component.c,v 1.4 2010/10/04 15:57:27 pgoyette Exp $ #include "ioconf.c" void swwdogattach(int); +void swsensorattach(int); RUMP_COMPONENT(RUMP_COMPONENT_DEV) { @@ -78,4 +79,5 @@ RUMP_COMPONENT(RUMP_COMPONENT_DEV) sysmon_wdog_init(); rump_pdev_add(swwdogattach, 0); + rump_pdev_add(swsensorattach, 0); } |
