Staging
v0.5.2
https://github.com/torvalds/linux
Raw File
Tip revision: e49d033bddf5b565044e2abe4241353959bc9120 authored by Linus Torvalds on 04 April 2021, 21:15:36 UTC
Linux 5.12-rc6
Tip revision: e49d033
secvar-ops.c
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2019 IBM Corporation
 * Author: Nayna Jain
 *
 * This file initializes secvar operations for PowerPC Secureboot
 */

#include <linux/cache.h>
#include <asm/secvar.h>

const struct secvar_operations *secvar_ops __ro_after_init;

void set_secvar_ops(const struct secvar_operations *ops)
{
	secvar_ops = ops;
}
back to top