Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * definitions for PCM179X
0004  *
0005  * Copyright 2013 Amarula Solutions
0006  */
0007 
0008 #ifndef __PCM179X_H__
0009 #define __PCM179X_H__
0010 
0011 #define PCM1792A_FORMATS (SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S24_LE | \
0012               SNDRV_PCM_FMTBIT_S16_LE)
0013 
0014 extern const struct regmap_config pcm179x_regmap_config;
0015 
0016 int pcm179x_common_init(struct device *dev, struct regmap *regmap);
0017 
0018 #endif