Last change
on this file was 772, checked in by David Azarewicz, 6 months ago |
Merge in changes from 6.6-LTS branch.
Fixed additional 25+ problems.
|
File size:
558 bytes
|
Line | |
---|
1 | /* SPDX-License-Identifier: GPL-2.0-or-later */
|
---|
2 | /*
|
---|
3 | * Platform data for MAX98090
|
---|
4 | *
|
---|
5 | * Copyright 2011-2012 Maxim Integrated Products
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef __SOUND_MAX98090_PDATA_H__
|
---|
9 | #define __SOUND_MAX98090_PDATA_H__
|
---|
10 |
|
---|
11 | /* codec platform data */
|
---|
12 | struct max98090_pdata {
|
---|
13 |
|
---|
14 | /* Analog/digital microphone configuration:
|
---|
15 | * 0 = analog microphone input (normal setting)
|
---|
16 | * 1 = digital microphone input
|
---|
17 | */
|
---|
18 | unsigned int digmic_left_mode:1;
|
---|
19 | unsigned int digmic_right_mode:1;
|
---|
20 | unsigned int digmic_3_mode:1;
|
---|
21 | unsigned int digmic_4_mode:1;
|
---|
22 | };
|
---|
23 |
|
---|
24 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.