18 lines
365 B
C
18 lines
365 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright (c) 2019 MediaTek Inc.
|
||
|
* Author: Eason Yen <eason.yen@mediatek.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef _MT6779_AFE_GPIO_H_
|
||
|
#define _MT6779_AFE_GPIO_H_
|
||
|
|
||
|
struct mtk_base_afe;
|
||
|
|
||
|
int mt6779_afe_gpio_init(struct mtk_base_afe *afe);
|
||
|
|
||
|
int mt6779_afe_gpio_request(struct mtk_base_afe *afe, bool enable,
|
||
|
int dai, int uplink);
|
||
|
|
||
|
#endif
|