qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

sev-stub.c (444B)


      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 "sev.h"
     16 
     17 int sev_kvm_init(ConfidentialGuestSupport *cgs, Error **errp)
     18 {
     19     /* If we get here, cgs must be some non-SEV thing */
     20     return 0;
     21 }