Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/librump/rumpdev no need to call config_init_mi() in...



details:   https://anonhg.NetBSD.org/src/rev/adfdd37ea32c
branches:  trunk
changeset: 745110:adfdd37ea32c
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Sun Feb 23 01:53:03 2020 +0000

description:
no need to call config_init_mi() in rumpdev any more - rump_init() now calls
config_init(), and the sysctl shouldn't be needed

PR kern/55004

diffstat:

 sys/rump/librump/rumpdev/rump_dev.c |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 7711f219456a -r adfdd37ea32c sys/rump/librump/rumpdev/rump_dev.c
--- a/sys/rump/librump/rumpdev/rump_dev.c       Sun Feb 23 00:14:31 2020 +0000
+++ b/sys/rump/librump/rumpdev/rump_dev.c       Sun Feb 23 01:53:03 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rump_dev.c,v 1.27 2016/01/26 23:12:17 pooka Exp $      */
+/*     $NetBSD: rump_dev.c,v 1.28 2020/02/23 01:53:03 jdolecek 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.27 2016/01/26 23:12:17 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_dev.c,v 1.28 2020/02/23 01:53:03 jdolecek Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -49,7 +49,6 @@
        KERNEL_LOCK(1, curlwp);
 
        rump_mainbus_init();
-       config_init_mi();
 
        rump_component_init(RUMP_COMPONENT_DEV);
 



Home | Main Index | Thread Index | Old Index