xref: /linux/include/sound/cs42l73.h (revision 3d8c8bc0)
1*3d8c8bc0SBrian Austin /*
2*3d8c8bc0SBrian Austin  * linux/sound/cs42l73.h -- Platform data for CS42L73
3*3d8c8bc0SBrian Austin  *
4*3d8c8bc0SBrian Austin  * Copyright (c) 2012 Cirrus Logic Inc.
5*3d8c8bc0SBrian Austin  *
6*3d8c8bc0SBrian Austin  * This program is free software; you can redistribute it and/or modify
7*3d8c8bc0SBrian Austin  * it under the terms of the GNU General Public License version 2 as
8*3d8c8bc0SBrian Austin  * published by the Free Software Foundation.
9*3d8c8bc0SBrian Austin  */
10*3d8c8bc0SBrian Austin 
11*3d8c8bc0SBrian Austin #ifndef __CS42L73_H
12*3d8c8bc0SBrian Austin #define __CS42L73_H
13*3d8c8bc0SBrian Austin 
14*3d8c8bc0SBrian Austin struct cs42l73_platform_data {
15*3d8c8bc0SBrian Austin 	/* RST GPIO */
16*3d8c8bc0SBrian Austin 	unsigned int reset_gpio;
17*3d8c8bc0SBrian Austin 	unsigned int chgfreq;
18*3d8c8bc0SBrian Austin 	int jack_detection;
19*3d8c8bc0SBrian Austin 	unsigned int mclk_freq;
20*3d8c8bc0SBrian Austin };
21*3d8c8bc0SBrian Austin 
22*3d8c8bc0SBrian Austin #endif /* __CS42L73_H */
23