Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Platform data for MAX98090
0004  *
0005  * Copyright 2011-2012 Maxim Integrated Products
0006  */
0007 
0008 #ifndef __SOUND_MAX98090_PDATA_H__
0009 #define __SOUND_MAX98090_PDATA_H__
0010 
0011 /* codec platform data */
0012 struct max98090_pdata {
0013 
0014     /* Analog/digital microphone configuration:
0015      * 0 = analog microphone input (normal setting)
0016      * 1 = digital microphone input
0017      */
0018     unsigned int digmic_left_mode:1;
0019     unsigned int digmic_right_mode:1;
0020     unsigned int digmic_3_mode:1;
0021     unsigned int digmic_4_mode:1;
0022 };
0023 
0024 #endif