WM8994的声卡移植文档
cpu是s5pv210的
添加对三星S5PV210 CPU的支持,针对tiny210和mini210嵌入式开发板,使用linux-2.6.35.7内核;补丁方面可能还不完善,已经简单地使用nfs启动运行测试过,以后大家可以一起修改~
■属性 svn:executable 被设置为 *
行
1 /*
2 * Copyright (C) 2008 Samsung Electronics, Inc.
3 *
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 */
14
15 #ifndef __S5PC110_WM8994_H
16 #define __S5PC110_WM8994_H
17
18 struct wm8994_platform_data {
19 int ldo;
20 int ear_sel;
21 void (*set_mic_bias)(bool on);
22 };
23
24 #endif