brintos

brintos / linux-shallow public Read only

0
0
Text · 493 B · 79439c8 Raw
18 lines · c
1// SPDX-License-Identifier: GPL-2.02// Definitions for PCM1789 audio driver3// Copyright (C) 2018 Bootlin4// Mylène Josserand <mylene.josserand@bootlin.com>5 6#ifndef __PCM1789_H__7#define __PCM1789_H__8 9#define PCM1789_FORMATS (SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S24_LE | \10			 SNDRV_PCM_FMTBIT_S16_LE)11 12extern const struct regmap_config pcm1789_regmap_config;13 14int pcm1789_common_init(struct device *dev, struct regmap *regmap);15void pcm1789_common_exit(struct device *dev);16 17#endif18