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 v4.2 23 lines 519 B view raw
1/* 2 * ADAU1361/ADAU1461/ADAU1761/ADAU1961 driver 3 * 4 * Copyright 2014 Analog Devices Inc. 5 * Author: Lars-Peter Clausen <lars@metafoo.de> 6 * 7 * Licensed under the GPL-2. 8 */ 9 10#ifndef __SOUND_SOC_CODECS_ADAU1761_H__ 11#define __SOUND_SOC_CODECS_ADAU1761_H__ 12 13#include <linux/regmap.h> 14#include "adau17x1.h" 15 16struct device; 17 18int adau1761_probe(struct device *dev, struct regmap *regmap, 19 enum adau17x1_type type, void (*switch_mode)(struct device *dev)); 20 21extern const struct regmap_config adau1761_regmap_config; 22 23#endif