
move fw_coredump api to firmware.c file. Change-Id: Icbd5644244d4460bf918c1d137d19c04eb9f492a Signed-off-by: Dikshita Agarwal <quic_dikshita@quicinc.com>
19 lines
503 B
C
19 lines
503 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2022, The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _MSM_VIDC_FIRMWARE_H_
|
|
#define _MSM_VIDC_FIRMWARE_H_
|
|
|
|
struct msm_vidc_core;
|
|
|
|
int fw_load(struct msm_vidc_core *core);
|
|
int fw_unload(struct msm_vidc_core *core);
|
|
int fw_suspend(struct msm_vidc_core *core);
|
|
int fw_resume(struct msm_vidc_core *core);
|
|
void fw_coredump(struct msm_vidc_core *core);
|
|
|
|
#endif
|