]> Git Repo - linux.git/blob - arch/powerpc/kernel/secvar-ops.c
KVM: x86: fix CPUID entries returned by KVM_GET_CPUID2 ioctl
[linux.git] / arch / powerpc / kernel / secvar-ops.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2019 IBM Corporation
4  * Author: Nayna Jain
5  *
6  * This file initializes secvar operations for PowerPC Secureboot
7  */
8
9 #include <linux/cache.h>
10 #include <asm/secvar.h>
11
12 const struct secvar_operations *secvar_ops __ro_after_init;
13
14 void set_secvar_ops(const struct secvar_operations *ops)
15 {
16         secvar_ops = ops;
17 }
This page took 0.032589 seconds and 4 git commands to generate.