diff options
author | Radim Krčmář <rkrcmar@redhat.com> | 2016-10-10 17:28:42 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-10-17 15:44:49 -0200 |
commit | 2f114315dcf239bc513f18ae0b04b5df81cae059 (patch) | |
tree | aa7b0a5f0c0bc29676bbb5570df4e8b72f17342d /hw/intc | |
parent | 8ca30e8673aff9bfcf8f969f8db4266b5f62e49c (diff) | |
download | qemu-2f114315dcf239bc513f18ae0b04b5df81cae059.tar.gz qemu-2f114315dcf239bc513f18ae0b04b5df81cae059.tar.bz2 qemu-2f114315dcf239bc513f18ae0b04b5df81cae059.zip |
apic: add global apic_get_class()
Every configuration has only up to one APIC class and we'll be extending
the class with a function that can be called without an instanced
object, so a direct access to the class is convenient.
This patch will break compilation if some code uses apic_get_class()
with CONFIG_USER_ONLY.
Suggested-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/intc')
-rw-r--r-- | hw/intc/apic_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/intc/apic_common.c b/hw/intc/apic_common.c index 14ac43c186..8d01c9c875 100644 --- a/hw/intc/apic_common.c +++ b/hw/intc/apic_common.c @@ -18,6 +18,7 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/> */ #include "qemu/osdep.h" +#include "qemu/error-report.h" #include "qapi/error.h" #include "qemu-common.h" #include "cpu.h" |