xref: /openbmc/linux/include/linux/mfd/wm97xx.h (revision ba61bb17)
1 /*
2  * wm97xx client interface
3  *
4  * Copyright (C) 2017 Robert Jarzmik
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  */
11 
12 #ifndef __LINUX_MFD_WM97XX_H
13 #define __LINUX_MFD_WM97XX_H
14 
15 struct regmap;
16 struct wm97xx_batt_pdata;
17 struct snd_ac97;
18 
19 struct wm97xx_platform_data {
20 	struct snd_ac97 *ac97;
21 	struct regmap *regmap;
22 	struct wm97xx_batt_pdata *batt_pdata;
23 };
24 
25 #endif
26