
update copyright markings to 2023 in all files. Change-Id: I6842d56c4a8fff6a7a93d0c1d4bc049041297b02 Signed-off-by: Darshana Patil <quic_darshana@quicinc.com>
19 rivejä
458 B
C
19 rivejä
458 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);
|
|
|
|
|
|
#endif
|