mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
configure: CONFIG_NO_XEN is duplicated
We already define it in Makefile.target. But we need to avoid a curious double negation in order to eliminate it. Tested-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
2b6b7099fb
commit
15c08efebd
2 changed files with 1 additions and 4 deletions
|
@ -25,7 +25,7 @@ extern bool xen_allowed;
|
|||
|
||||
static inline bool xen_enabled(void)
|
||||
{
|
||||
#if defined(CONFIG_XEN_BACKEND) && !defined(CONFIG_NO_XEN)
|
||||
#if defined(CONFIG_XEN_BACKEND) && defined(CONFIG_XEN)
|
||||
return xen_allowed;
|
||||
#else
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue