firmware.h 381 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2022, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _MSM_VIDC_FIRMWARE_H_
  6. #define _MSM_VIDC_FIRMWARE_H_
  7. struct msm_vidc_core;
  8. int fw_load(struct msm_vidc_core *core);
  9. int fw_unload(struct msm_vidc_core *core);
  10. int fw_suspend(struct msm_vidc_core *core);
  11. int fw_resume(struct msm_vidc_core *core);
  12. #endif