Module Name: src Committed By: dyoung Date: Mon Mar 28 22:23:40 UTC 2011
Modified Files: src/sys/rump/librump/rumpdev: rump_dev.c Log Message: __HAVE_DEVICE_REGISTER_POSTCONFIG and __HAVE_DEVICE_REGISTER are no more, so don't use them here. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/sys/rump/librump/rumpdev/rump_dev.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/librump/rumpdev/rump_dev.c diff -u src/sys/rump/librump/rumpdev/rump_dev.c:1.18 src/sys/rump/librump/rumpdev/rump_dev.c:1.19 --- src/sys/rump/librump/rumpdev/rump_dev.c:1.18 Mon Mar 8 10:24:37 2010 +++ src/sys/rump/librump/rumpdev/rump_dev.c Mon Mar 28 22:23:39 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: rump_dev.c,v 1.18 2010/03/08 10:24:37 pooka Exp $ */ +/* $NetBSD: rump_dev.c,v 1.19 2011/03/28 22:23:39 dyoung Exp $ */ /* * Copyright (c) 2009 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rump_dev.c,v 1.18 2010/03/08 10:24:37 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rump_dev.c,v 1.19 2011/03/28 22:23:39 dyoung Exp $"); #include <sys/param.h> #include <sys/device.h> @@ -82,20 +82,16 @@ panic("%s: unimplemented", __func__); } -#ifdef __HAVE_DEVICE_REGISTER void device_register(struct device *dev, void *v) { /* nada */ } -#endif -#ifdef __HAVE_DEVICE_REGISTER_POSTCONFIG void device_register_post_config(struct device *dev, void *v) { /* nada */ } -#endif