Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Platform data for WM8955
0004  *
0005  * Copyright 2009 Wolfson Microelectronics PLC.
0006  *
0007  * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
0008  */
0009 
0010 #ifndef __WM8955_PDATA_H__
0011 #define __WM8955_PDATA_H__
0012 
0013 struct wm8955_pdata {
0014     /* Configure LOUT2/ROUT2 to drive a speaker */
0015     unsigned int out2_speaker:1;
0016 
0017     /* Configure MONOIN+/- in differential mode */
0018     unsigned int monoin_diff:1;
0019 };
0020 
0021 #endif