X-Git-Url: https://git.proxmox.com/?p=mirror_qemu.git;a=blobdiff_plain;f=include%2Fhw%2Ffsi%2Ffsi.h;fp=include%2Fhw%2Ffsi%2Ffsi.h;h=50e8f5c888f10ea5fa859d424f9f22205580fcd6;hp=0000000000000000000000000000000000000000;hb=f4de3ca160c897ed3157ab8f0ad33ed93fe4bfe0;hpb=ca782334cb821a84d701133a6421516d264cf0d3 diff --git a/include/hw/fsi/fsi.h b/include/hw/fsi/fsi.h new file mode 100644 index 0000000000..50e8f5c888 --- /dev/null +++ b/include/hw/fsi/fsi.h @@ -0,0 +1,19 @@ +/* + * SPDX-License-Identifier: GPL-2.0-or-later + * Copyright (C) 2024 IBM Corp. + * + * IBM Flexible Service Interface + */ +#ifndef FSI_FSI_H +#define FSI_FSI_H + +#include "hw/qdev-core.h" + +#define TYPE_FSI_BUS "fsi.bus" +OBJECT_DECLARE_SIMPLE_TYPE(FSIBus, FSI_BUS) + +typedef struct FSIBus { + BusState bus; +} FSIBus; + +#endif /* FSI_FSI_H */