mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2024-11-19 13:27:49 +00:00
16 lines
355 B
C
16 lines
355 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2021 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef __SND_SOC_RT5512_H
|
|
#define __SND_SOC_RT5512_H
|
|
|
|
#include <linux/pm_runtime.h>
|
|
|
|
/* Export function */
|
|
int rt5512_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id);
|
|
int rt5512_i2c_remove(struct i2c_client *client);
|
|
#endif /* __SND_SOC_RT5512_H */
|
|
|