Files
Yaya48 cf256aa081 Import QEMU upstream snapshot d2e570c
Upstream: https://gitlab.com/qemu-project/qemu.git

Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
2026-08-31 02:15:30 +02:00

28 lines
612 B
C

/*
* Adjunct Processor (AP) matrix device interfaces
*
* Copyright 2018 IBM Corp.
*
* This work is licensed under the terms of the GNU GPL, version 2 or (at
* your option) any later version. See the COPYING file in the top-level
* directory.
*/
#ifndef HW_S390X_AP_DEVICE_H
#define HW_S390X_AP_DEVICE_H
#include "hw/core/qdev.h"
#include "qom/object.h"
#define TYPE_AP_DEVICE "ap-device"
struct APDevice {
DeviceState parent_obj;
};
typedef struct APDevice APDevice;
DECLARE_INSTANCE_CHECKER(APDevice, AP_DEVICE,
TYPE_AP_DEVICE)
#endif /* HW_S390X_AP_DEVICE_H */