/* SPDX-License-Identifier: GPL-2.0-only */ /* * ADAU1977/ADAU1978/ADAU1979 driver * * Copyright 2014 Analog Devices Inc. * Author: Lars-Peter Clausen <[email protected]> */ #ifndef __SOUND_SOC_CODECS_ADAU1977_H__ #define __SOUND_SOC_CODECS_ADAU1977_H__ #include <linux/regmap.h> struct device; enum adau1977_type { … }; int adau1977_probe(struct device *dev, struct regmap *regmap, enum adau1977_type type, void (*switch_mode)(struct device *dev)); extern const struct regmap_config adau1977_regmap_config; enum adau1977_clk_id { … }; enum adau1977_sysclk_src { … }; #endif