diff mbox

[26/33] kvm tools: ioport arch init

Message ID 1346833927-15740-27-git-send-email-levinsasha928@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Sasha Levin Sept. 5, 2012, 8:32 a.m. UTC
Move ioport arch init into ioport init, which is the logical place for that instead of a
random place in the global init code.

Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
---
 tools/kvm/builtin-run.c | 2 --
 tools/kvm/ioport.c      | 2 ++
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/tools/kvm/builtin-run.c b/tools/kvm/builtin-run.c
index ba1cf41..66bba44 100644
--- a/tools/kvm/builtin-run.c
+++ b/tools/kvm/builtin-run.c
@@ -747,8 +747,6 @@  static int kvm_cmd_run_init(int argc, const char **argv)
 	if (r < 0)
 		pr_debug("symbol_init() failed with error %d\n", r);
 
-	ioport__setup_arch();
-
 	r = rtc__init(kvm);
 	if (r < 0) {
 		pr_err("rtc__init() failed with error %d\n", r);
diff --git a/tools/kvm/ioport.c b/tools/kvm/ioport.c
index 2208c15..f5fb246 100644
--- a/tools/kvm/ioport.c
+++ b/tools/kvm/ioport.c
@@ -184,6 +184,8 @@  error:
 
 int ioport__init(struct kvm *kvm)
 {
+	ioport__setup_arch();
+
 	return 0;
 }