Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / gpu / drm / tegra / hda.h
blob77269955a4f2f1eec895bddc0ff1c19d3b2828cc
1 // SPDX-License-Identifier: MIT
2 /*
3 * Copyright (C) 2019 NVIDIA Corporation
4 */
6 #ifndef DRM_TEGRA_HDA_H
7 #define DRM_TEGRA_HDA_H 1
9 #include <linux/types.h>
11 struct tegra_hda_format {
12 unsigned int sample_rate;
13 unsigned int channels;
14 unsigned int bits;
15 bool pcm;
18 void tegra_hda_parse_format(unsigned int format, struct tegra_hda_format *fmt);
20 #endif