Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (c) 2015 MediaTek Inc.
4 */
5
6#ifndef __MTK_MMSYS_H
7#define __MTK_MMSYS_H
8
9enum mtk_ddp_comp_id;
10struct device;
11
12void mtk_mmsys_ddp_connect(struct device *dev,
13 enum mtk_ddp_comp_id cur,
14 enum mtk_ddp_comp_id next);
15
16void mtk_mmsys_ddp_disconnect(struct device *dev,
17 enum mtk_ddp_comp_id cur,
18 enum mtk_ddp_comp_id next);
19
20#endif /* __MTK_MMSYS_H */