commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
23 lines
513 B
C
23 lines
513 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* ADAU1381/ADAU1781 driver
|
|
*
|
|
* Copyright 2014 Analog Devices Inc.
|
|
* Author: Lars-Peter Clausen <lars@metafoo.de>
|
|
*/
|
|
|
|
#ifndef __SOUND_SOC_CODECS_ADAU1781_H__
|
|
#define __SOUND_SOC_CODECS_ADAU1781_H__
|
|
|
|
#include <linux/regmap.h>
|
|
#include "adau17x1.h"
|
|
|
|
struct device;
|
|
|
|
int adau1781_probe(struct device *dev, struct regmap *regmap,
|
|
enum adau17x1_type type, void (*switch_mode)(struct device *dev));
|
|
|
|
extern const struct regmap_config adau1781_regmap_config;
|
|
|
|
#endif
|