brintos

brintos / linux-shallow public Read only

0
0
Text · 531 B · 21c4499 Raw
27 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * AMD MP2 1.1 initialization structures4 *5 * Copyright (c) 2022, Advanced Micro Devices, Inc.6 * All Rights Reserved.7 *8 * Author: Basavaraj Natikar <Basavaraj.Natikar@amd.com>9 */10 11#ifndef AMD_SFH_INIT_H12#define AMD_SFH_INIT_H13 14#include "../amd_sfh_common.h"15 16struct amd_sfh1_1_ops {17	int (*init)(struct amd_mp2_dev *mp2);18};19 20int amd_sfh1_1_init(struct amd_mp2_dev *mp2);21 22static const struct amd_sfh1_1_ops __maybe_unused sfh1_1_ops = {23	.init = amd_sfh1_1_init,24};25 26#endif27