printf: Remove unused 'bprintf'
[drm/drm-misc.git] / drivers / hid / amd-sfh-hid / sfh1_1 / amd_sfh_init.h
blob21c44990bbebad26ec8b26ae25f7fcd37da513d9
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * AMD MP2 1.1 initialization structures
5 * Copyright (c) 2022, Advanced Micro Devices, Inc.
6 * All Rights Reserved.
8 * Author: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
9 */
11 #ifndef AMD_SFH_INIT_H
12 #define AMD_SFH_INIT_H
14 #include "../amd_sfh_common.h"
16 struct amd_sfh1_1_ops {
17 int (*init)(struct amd_mp2_dev *mp2);
20 int amd_sfh1_1_init(struct amd_mp2_dev *mp2);
22 static const struct amd_sfh1_1_ops __maybe_unused sfh1_1_ops = {
23 .init = amd_sfh1_1_init,
26 #endif