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 <levinsasha...@gmail.com>
---
 tools/kvm/builtin-run.c | 2 --
 tools/kvm/ioport.c      | 2 ++
 2 files changed, 2 insertions(+), 2 deletions(-)

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;
 }
 
-- 
1.7.12

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to