Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * Copyright (C) 2019 IBM Corporation
0004  * Author: Nayna Jain
0005  *
0006  * This file initializes secvar operations for PowerPC Secureboot
0007  */
0008 
0009 #include <linux/cache.h>
0010 #include <asm/secvar.h>
0011 
0012 const struct secvar_operations *secvar_ops __ro_after_init;
0013 
0014 void set_secvar_ops(const struct secvar_operations *ops)
0015 {
0016     secvar_ops = ops;
0017 }