David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * wm97xx client interface |
| 4 | * |
| 5 | * Copyright (C) 2017 Robert Jarzmik |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 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 |