Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 // Definitions for PCM1789 audio driver
0003 // Copyright (C) 2018 Bootlin
0004 // Mylène Josserand <mylene.josserand@bootlin.com>
0005 
0006 #ifndef __PCM1789_H__
0007 #define __PCM1789_H__
0008 
0009 #define PCM1789_FORMATS (SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S24_LE | \
0010              SNDRV_PCM_FMTBIT_S16_LE)
0011 
0012 extern const struct regmap_config pcm1789_regmap_config;
0013 
0014 int pcm1789_common_init(struct device *dev, struct regmap *regmap);
0015 void pcm1789_common_exit(struct device *dev);
0016 
0017 #endif