On Tue, 28 Apr 2026 16:45:15 -0700, Pierrick Bouvier <[email protected]> wrote: > diff --git a/include/qemu/target-info-qom.h b/include/qemu/target-info-qom.h > new file mode 100644 > index 00000000000..db069db718a > --- /dev/null > +++ b/include/qemu/target-info-qom.h > @@ -0,0 +1,23 @@ > +/* > + * QEMU target info QOM types > + * > + * Copyright (c) Qualcomm > + * > + * SPDX-License-Identifier: GPL-2.0-or-later > + */ > + > +#include "qemu/target-info-impl.h" > +#include "qom/object.h"
Missing include guard. Add: #ifndef QEMU_TARGET_INFO_QOM_H #define QEMU_TARGET_INFO_QOM_H before the includes, and a matching #endif at the end. -- Marc-André Lureau <[email protected]>
