Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/sound/pci/ice1712/vt1720_mobo.h
26442 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
#ifndef __SOUND_VT1720_MOBO_H
3
#define __SOUND_VT1720_MOBO_H
4
5
/*
6
* ALSA driver for VT1720/VT1724 (Envy24PT/Envy24HT)
7
*
8
* Lowlevel functions for VT1720-based motherboards
9
*
10
* Copyright (c) 2004 Takashi Iwai <[email protected]>
11
*/
12
13
#define VT1720_MOBO_DEVICE_DESC "{Albatron,K8X800 Pro II},"\
14
"{Chaintech,ZNF3-150},"\
15
"{Chaintech,ZNF3-250},"\
16
"{Chaintech,9CJS},"\
17
"{Shuttle,SN25P},"
18
19
#define VT1720_SUBDEVICE_K8X800 0xf217052c
20
#define VT1720_SUBDEVICE_ZNF3_150 0x0f2741f6
21
#define VT1720_SUBDEVICE_ZNF3_250 0x0f2745f6
22
#define VT1720_SUBDEVICE_9CJS 0x0f272327
23
#define VT1720_SUBDEVICE_SN25P 0x97123650
24
25
extern struct snd_ice1712_card_info snd_vt1720_mobo_cards[];
26
27
#endif /* __SOUND_VT1720_MOBO_H */
28
29