| 1 | |
| 2 | /* |
| 3 | * Inter-VM Shared Memory PCI device. |
| 4 | * |
| 5 | * Author: |
| 6 | * Cam Macdonell <cam@cs.ualberta.ca> |
| 7 | * |
| 8 | * Based On: cirrus_vga.c |
| 9 | * Copyright (c) 2004 Fabrice Bellard |
| 10 | * Copyright (c) 2004 Makoto Suzuki (suzu) |
| 11 | * |
| 12 | * and rtl8139.c |
| 13 | * Copyright (c) 2006 Igor Kovalenko |
| 14 | * |
| 15 | * This code is licensed under the GNU GPL v2. |
| 16 | * |
| 17 | * Contributions after 2012-01-13 are licensed under the terms of the |
| 18 | * GNU GPL, version 2 or (at your option) any later version. |
| 19 | */ |
| 20 | #ifndef IVSHMEM_H |
| 21 | #define IVSHMEM_H |
| 22 | |
| 23 | #define IVSHMEM_PROTOCOL_VERSION 0 |
| 24 | |
| 25 | #endif /* IVSHMEM_H */ |