blob: f23234e9f5c7df11889b3a27dc7c712a967c8f6c [file]
// Support for generating ACPI tables (on emulators)
// DO NOT ADD NEW FEATURES HERE. (See paravirt.c / biostables.c instead.)
//
// Copyright (C) 2008-2010 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2006 Fabrice Bellard
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "config.h" // CONFIG_*
#include "output.h" // dprintf
void
acpi_setup(void)
{
if (! CONFIG_ACPI)
return;
dprintf(1, "ACPI tables for qemu 1.6 and older are not supported any more.\n");
}