Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * wm97xx client interface
0004  *
0005  * Copyright (C) 2017 Robert Jarzmik
0006  */
0007 
0008 #ifndef __LINUX_MFD_WM97XX_H
0009 #define __LINUX_MFD_WM97XX_H
0010 
0011 struct regmap;
0012 struct wm97xx_batt_pdata;
0013 struct snd_ac97;
0014 
0015 struct wm97xx_platform_data {
0016     struct snd_ac97 *ac97;
0017     struct regmap *regmap;
0018     struct wm97xx_batt_pdata *batt_pdata;
0019 };
0020 
0021 #endif