Commit e7febd95 authored by Markus Armbruster's avatar Markus Armbruster
Browse files

Include qom/object.h slightly less



hw/hw.h used to include headers hardware emulation "usually" needs.
The previous commits removed all but one of them, to good effect.
Only qom/object.h is left.  Remove that one, too.

Signed-off-by: default avatarMarkus Armbruster <armbru@redhat.com>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190812052359.30071-18-armbru@redhat.com>
parent d4842052
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
#ifndef EDID_H
#define EDID_H

#include "hw/hw.h"
#include "qom/object.h"

typedef struct qemu_edid_info {
    const char *vendor; /* http://www.uefi.org/pnp_id_list */
+0 −2
Original line number Diff line number Diff line
@@ -6,8 +6,6 @@
#error Cannot include hw/hw.h from user emulation
#endif

#include "qom/object.h"

void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);

#endif