Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.1-rc6 25 lines 576 B view raw
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