xref: /qemu/include/hw/s390x/adapter.h (revision 72ac97cd)
1 /*
2  * s390 adapter definitions
3  *
4  * Copyright 2013,2014 IBM Corp.
5  * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
6  *
7  * This work is licensed under the terms of the GNU GPL, version 2 or (at
8  * your option) any later version. See the COPYING file in the top-level
9  * directory.
10  */
11 
12 #ifndef S390X_ADAPTER_H
13 #define S390X_ADAPTER_H
14 
15 struct AdapterInfo {
16     uint64_t ind_addr;
17     uint64_t summary_addr;
18     uint64_t ind_offset;
19     uint32_t summary_offset;
20     uint32_t adapter_id;
21 };
22 
23 #endif
24