]> git.proxmox.com Git - mirror_qemu.git/blame - accel/kvm/sev-stub.c
confidential guest support: Move SEV initialization into arch specific code
[mirror_qemu.git] / accel / kvm / sev-stub.c
CommitLineData
b20e3780
BS
1/*
2 * QEMU SEV stub
3 *
4 * Copyright Advanced Micro Devices 2018
5 *
6 * Authors:
7 * Brijesh Singh <brijesh.singh@amd.com>
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
c9f5aaa6 18int sev_kvm_init(ConfidentialGuestSupport *cgs, Error **errp)
54e89539 19{
ec78e2cd
DG
20 /* If we get here, cgs must be some non-SEV thing */
21 return 0;
b20e3780 22}