mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00

Implement stub functions for the MMinfra (Multimedia Infrastructure) driver to ensure that the build can pass when a prebuilt library is not available. Change-Id: Iadac654950c868d3743b13a1d6f7ab5d1015fb86 Signed-off-by: Yong Wu <yong.wu@mediatek.com>
16 lines
318 B
C
16 lines
318 B
C
/*
|
|
* Copyright (c) 2025, MediaTek Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef MMINFRA_PUBLIC_H
|
|
#define MMINFRA_PUBLIC_H
|
|
|
|
#define MMINFRA_RET_ERR (-1)
|
|
#define MMINFRA_RET_POWER_OFF 0
|
|
#define MMINFRA_RET_POWER_ON 1
|
|
|
|
int mminfra_get_if_in_use(void);
|
|
int mminfra_put(void);
|
|
|
|
#endif
|