]> Git Repo - qemu.git/blob - accel/kvm/sev-stub.c
gitlab-ci: Add cross-compiling build tests
[qemu.git] / accel / kvm / sev-stub.c
1 /*
2  * QEMU SEV stub
3  *
4  * Copyright Advanced Micro Devices 2018
5  *
6  * Authors:
7  *      Brijesh Singh <[email protected]>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2 or later.
10  * See the COPYING file in the top-level directory.
11  *
12  */
13
14 #include "qemu/osdep.h"
15 #include "qemu-common.h"
16 #include "sysemu/sev.h"
17
18 int sev_encrypt_data(void *handle, uint8_t *ptr, uint64_t len)
19 {
20     abort();
21 }
22
23 void *sev_guest_init(const char *id)
24 {
25     return NULL;
26 }
This page took 0.027281 seconds and 4 git commands to generate.