wm97xx.h 369 B

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