brintos

brintos / linux-shallow public Read only

0
0
Text · 419 B · 5d29469 Raw
20 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * mt8192-afe-gpio.h  --  Mediatek 8192 afe gpio ctrl definition4 *5 * Copyright (c) 2020 MediaTek Inc.6 * Author: Shane Chien <shane.chien@mediatek.com>7 */8 9#ifndef _MT8192_AFE_GPIO_H_10#define _MT8192_AFE_GPIO_H_11 12struct device;13 14int mt8192_afe_gpio_init(struct device *dev);15 16int mt8192_afe_gpio_request(struct device *dev, bool enable,17			    int dai, int uplink);18 19#endif20