]> Git Repo - linux.git/blob - sound/pci/hda/hda_component.h
Merge tag 'amd-drm-next-6.5-2023-06-09' of https://gitlab.freedesktop.org/agd5f/linux...
[linux.git] / sound / pci / hda / hda_component.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * HD audio Component Binding Interface
4  *
5  * Copyright (C) 2021 Cirrus Logic, Inc. and
6  *                    Cirrus Logic International Semiconductor Ltd.
7  */
8
9 #include <linux/component.h>
10
11 #define HDA_MAX_COMPONENTS      4
12 #define HDA_MAX_NAME_SIZE       50
13
14 struct hda_component {
15         struct device *dev;
16         char name[HDA_MAX_NAME_SIZE];
17         struct hda_codec *codec;
18         void (*playback_hook)(struct device *dev, int action);
19 };
This page took 0.03688 seconds and 4 git commands to generate.