]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/mfd/wm97xx.h
Merge tag 'platform-drivers-x86-v4.15-4' of git://git.infradead.org/linux-platform...
[mirror_ubuntu-bionic-kernel.git] / include / linux / mfd / wm97xx.h
CommitLineData
a5c6951c
RJ
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
15struct regmap;
16struct wm97xx_batt_pdata;
17struct snd_ac97;
18
19struct wm97xx_platform_data {
20 struct snd_ac97 *ac97;
21 struct regmap *regmap;
22 struct wm97xx_batt_pdata *batt_pdata;
23};
24
25#endif