mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
fe1ff61487
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>
17 lines
303 B
C
17 lines
303 B
C
/* 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
|