Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/sound/hda/codecs/side-codecs/cs35l41_hda_property.h
26481 views
1
/* SPDX-License-Identifier: GPL-2.0
2
*
3
* CS35L41 ALSA HDA Property driver
4
*
5
* Copyright 2023 Cirrus Logic, Inc.
6
*
7
* Author: Stefan Binding <[email protected]>
8
*/
9
10
#ifndef CS35L41_HDA_PROP_H
11
#define CS35L41_HDA_PROP_H
12
13
#include <linux/device.h>
14
#include "cs35l41_hda.h"
15
16
int cs35l41_add_dsd_properties(struct cs35l41_hda *cs35l41, struct device *physdev, int id,
17
const char *hid);
18
#endif /* CS35L41_HDA_PROP_H */
19
20