hyperv: vmbus: Remove the 2nd IRQ
[qemu/ar7.git] / include / hw / hyperv / vmbus-bridge.h
blob33f93de64d8d42ffdb66ac13248c2c9ac48ce5e9
1 /*
2 * QEMU Hyper-V VMBus root bridge
4 * Copyright (c) 2017-2018 Virtuozzo International GmbH.
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
10 #ifndef HW_HYPERV_VMBUS_BRIDGE_H
11 #define HW_HYPERV_VMBUS_BRIDGE_H
13 #include "hw/sysbus.h"
15 #define TYPE_VMBUS_BRIDGE "vmbus-bridge"
17 typedef struct VMBus VMBus;
19 typedef struct VMBusBridge {
20 SysBusDevice parent_obj;
22 uint8_t irq;
24 VMBus *bus;
25 } VMBusBridge;
27 #define VMBUS_BRIDGE(obj) OBJECT_CHECK(VMBusBridge, (obj), TYPE_VMBUS_BRIDGE)
29 static inline VMBusBridge *vmbus_bridge_find(void)
31 return VMBUS_BRIDGE(object_resolve_path_type("", TYPE_VMBUS_BRIDGE, NULL));
34 #endif