Commit 5de8229d authored by Peter Maydell's avatar Peter Maydell
Browse files

target-arm/machine.c: Allow user to request GICv3 emulation



Now we have an emulated GICv3, remove the restriction in
gicv3_class_name() so that the user can request a GICv3 with
-machine gic-version=3 even when not using KVM.

Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Reviewed-by: default avatarShannon Zhao <shannon.zhao@linaro.org>
Tested-by: default avatarShannon Zhao <shannon.zhao@linaro.org>
Message-id: 1465915112-29272-20-git-send-email-peter.maydell@linaro.org
parent 227a8653
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -342,8 +342,7 @@ const char *gicv3_class_name(void)
                     "platform");
#endif
    } else {
        /* TODO: Software emulation is not implemented yet */
        error_report("KVM is currently required for GICv3 emulation");
        return "arm-gicv3";
    }

    exit(1);