root/include/linux/mfd/wm97xx.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0-or-later */
   2 /*
   3  * wm97xx client interface
   4  *
   5  * Copyright (C) 2017 Robert Jarzmik
   6  */
   7 
   8 #ifndef __LINUX_MFD_WM97XX_H
   9 #define __LINUX_MFD_WM97XX_H
  10 
  11 struct regmap;
  12 struct wm97xx_batt_pdata;
  13 struct snd_ac97;
  14 
  15 struct wm97xx_platform_data {
  16         struct snd_ac97 *ac97;
  17         struct regmap *regmap;
  18         struct wm97xx_batt_pdata *batt_pdata;
  19 };
  20 
  21 #endif

/* [<][>][^][v][top][bottom][index][help] */