1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved
4  */
5 
6 #ifndef ACPI_GENERIC_INITIATOR_H
7 #define ACPI_GENERIC_INITIATOR_H
8 
9 #include "qom/object_interfaces.h"
10 
11 #define TYPE_ACPI_GENERIC_INITIATOR "acpi-generic-initiator"
12 
13 typedef struct AcpiGenericInitiator {
14     /* private */
15     Object parent;
16 
17     /* public */
18     char *pci_dev;
19     uint16_t node;
20 } AcpiGenericInitiator;
21 
22 #endif
23