| 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 | typedef 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 | } AdapterInfo; |
| 22 | |
| 23 | #endif |