1
0
Fork 0
qemu/roms/skiboot/libstb/secvar/storage/tpmnv_ops.c
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

15 lines
412 B
C

// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
/* Copyright 2020 IBM Corp. */
#include <tssskiboot.h>
#include "secboot_tpm.h"
struct tpmnv_ops_s tpmnv_ops = {
.read = tss_nv_read,
.write = tss_nv_write,
.writelock = tss_nv_write_lock,
.definespace = tss_nv_define_space,
.getindices = tss_get_defined_nv_indices,
.undefinespace = tss_nv_undefine_space,
.readpublic = tss_nv_read_public,
};