qemu-config: add error propagation to qemu_config_parse
[qemu/ar7.git] / include / hw / s390x / ap-device.h
blobe502745de5ea5045f4475a1f3962b77ff6a22415
1 /*
2 * Adjunct Processor (AP) matrix device interfaces
4 * Copyright 2018 IBM Corp.
6 * This work is licensed under the terms of the GNU GPL, version 2 or (at
7 * your option) any later version. See the COPYING file in the top-level
8 * directory.
9 */
11 #ifndef HW_S390X_AP_DEVICE_H
12 #define HW_S390X_AP_DEVICE_H
14 #include "hw/qdev-core.h"
15 #include "qom/object.h"
17 #define TYPE_AP_DEVICE "ap-device"
19 struct APDevice {
20 DeviceState parent_obj;
22 typedef struct APDevice APDevice;
24 DECLARE_INSTANCE_CHECKER(APDevice, AP_DEVICE,
25 TYPE_AP_DEVICE)
27 #endif /* HW_S390X_AP_DEVICE_H */