Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
d099379f
Commit
d099379f
authored
Nov 25, 2002
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] i810 audio new idents
parent
bb415b9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
sound/oss/i810_audio.c
sound/oss/i810_audio.c
+20
-2
No files found.
sound/oss/i810_audio.c
View file @
d099379f
...
...
@@ -101,6 +101,9 @@
#ifndef PCI_DEVICE_ID_INTEL_ICH3
#define PCI_DEVICE_ID_INTEL_ICH3 0x2485
#endif
#ifndef PCI_DEVICE_ID_INTEL_ICH4
#define PCI_DEVICE_ID_INTEL_ICH4 0x24c5
#endif
#ifndef PCI_DEVICE_ID_INTEL_440MX
#define PCI_DEVICE_ID_INTEL_440MX 0x7195
#endif
...
...
@@ -110,6 +113,9 @@
#ifndef PCI_DEVICE_ID_NVIDIA_MCP1_AUDIO
#define PCI_DEVICE_ID_NVIDIA_MCP1_AUDIO 0x01b1
#endif
#ifndef PCI_DEVICE_ID_AMD_768_AUDIO
#define PCI_DEVICE_ID_AMD_768_AUDIO 0x7445
#endif
static
int
ftsodell
=
0
;
static
int
strict_clocking
=
0
;
...
...
@@ -230,8 +236,11 @@ enum {
INTEL440MX
,
INTELICH2
,
INTELICH3
,
INTELICH4
,
SI7012
,
NVIDIA_NFORCE
NVIDIA_NFORCE
,
AMD768
,
AMD8111
};
static
char
*
card_names
[]
=
{
...
...
@@ -240,8 +249,11 @@ static char * card_names[] = {
"Intel 440MX"
,
"Intel ICH2"
,
"Intel ICH3"
,
"Intel ICH4"
,
"SiS 7012"
,
"NVIDIA nForce Audio"
"NVIDIA nForce Audio"
,
"AMD 768"
,
"AMD-8111 IOHub"
};
static
struct
pci_device_id
i810_pci_tbl
[]
__initdata
=
{
...
...
@@ -255,10 +267,16 @@ static struct pci_device_id i810_pci_tbl [] __initdata = {
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
INTELICH2
},
{
PCI_VENDOR_ID_INTEL
,
PCI_DEVICE_ID_INTEL_ICH3
,
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
INTELICH3
},
{
PCI_VENDOR_ID_INTEL
,
PCI_DEVICE_ID_INTEL_ICH4
,
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
INTELICH4
},
{
PCI_VENDOR_ID_SI
,
PCI_DEVICE_ID_SI_7012
,
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
SI7012
},
{
PCI_VENDOR_ID_NVIDIA
,
PCI_DEVICE_ID_NVIDIA_MCP1_AUDIO
,
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
NVIDIA_NFORCE
},
{
PCI_VENDOR_ID_AMD
,
PCI_DEVICE_ID_AMD_768_AUDIO
,
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
AMD768
},
{
PCI_VENDOR_ID_AMD
,
PCI_DEVICE_ID_AMD_8111_AUDIO
,
PCI_ANY_ID
,
PCI_ANY_ID
,
0
,
0
,
AMD8111
},
{
0
,}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment