diff options
author | Jack Yu <jack.yu@realtek.com> | 2024-06-19 05:53:42 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-06-19 14:50:34 +0100 |
commit | fe1ff61487ace69cd4e680e36169c90667eb9624 (patch) | |
tree | e183e39ae1fd0af0bce8b8c3a1af4a8402c3c5ff /include/sound | |
parent | 3ec1428d7b7c519d757a013cef908d7e33dee882 (diff) |
ASoC: rt1318: Add RT1318 audio amplifier driver
This is the initial i2s-based amplifier driver for rt1318.
Signed-off-by: Jack Yu <jack.yu@realtek.com>
Link: https://msgid.link/r/b3055442ce6d4994aa01aa1fad6ba1fe@realtek.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/rt1318.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/sound/rt1318.h b/include/sound/rt1318.h new file mode 100644 index 000000000000..fe6bff06036c --- /dev/null +++ b/include/sound/rt1318.h @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * linux/sound/rt1318.h -- Platform data for RT1318 + * + * Copyright 2024 Realtek Semiconductor Corp. + */ + +#ifndef __LINUX_SND_RT1318_H +#define __LINUX_SND_RT1318_H + +struct rt1318_platform_data { + unsigned int init_r0_l; + unsigned int init_r0_r; +}; + +#endif |