Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
cc491085
Commit
cc491085
authored
Dec 25, 2008
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'topic/oxygen' into to-push
parents
a8022697
de04b102
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
Documentation/sound/alsa/ALSA-Configuration.txt
Documentation/sound/alsa/ALSA-Configuration.txt
+2
-1
sound/pci/Kconfig
sound/pci/Kconfig
+2
-1
sound/pci/oxygen/oxygen.c
sound/pci/oxygen/oxygen.c
+4
-0
No files found.
Documentation/sound/alsa/ALSA-Configuration.txt
View file @
cc491085
...
...
@@ -1350,7 +1350,8 @@ Prior to version 0.9.0rc4 options had a 'snd_' prefix. This was removed.
* AuzenTech X-Meridian
* Bgears b-Enspirer
* Club3D Theatron DTS
* HT-Omega Claro
* HT-Omega Claro (plus)
* HT-Omega Claro halo (XT)
* Razer Barracuda AC-1
* Sondigo Inferno
...
...
sound/pci/Kconfig
View file @
cc491085
...
...
@@ -208,7 +208,8 @@ config SND_OXYGEN
* AuzenTech X-Meridian
* Bgears b-Enspirer
* Club3D Theatron DTS
* HT-Omega Claro
* HT-Omega Claro (plus)
* HT-Omega Claro halo (XT)
* Razer Barracuda AC-1
* Sondigo Inferno
...
...
sound/pci/oxygen/oxygen.c
View file @
cc491085
...
...
@@ -61,6 +61,7 @@ MODULE_PARM_DESC(enable, "enable card");
enum
{
MODEL_CMEDIA_REF
,
/* C-Media's reference design */
MODEL_MERIDIAN
,
/* AuzenTech X-Meridian */
MODEL_HALO
,
/* HT-Omega Claro halo */
};
static
struct
pci_device_id
oxygen_ids
[]
__devinitdata
=
{
...
...
@@ -74,6 +75,7 @@ static struct pci_device_id oxygen_ids[] __devinitdata = {
{
OXYGEN_PCI_SUBID
(
0x1a58
,
0x0910
),
.
driver_data
=
MODEL_CMEDIA_REF
},
{
OXYGEN_PCI_SUBID
(
0x415a
,
0x5431
),
.
driver_data
=
MODEL_MERIDIAN
},
{
OXYGEN_PCI_SUBID
(
0x7284
,
0x9761
),
.
driver_data
=
MODEL_CMEDIA_REF
},
{
OXYGEN_PCI_SUBID
(
0x7284
,
0x9781
),
.
driver_data
=
MODEL_HALO
},
{
}
};
MODULE_DEVICE_TABLE
(
pci
,
oxygen_ids
);
...
...
@@ -301,6 +303,8 @@ static int generic_probe(struct oxygen *chip, unsigned long driver_data)
PLAYBACK_1_TO_SPDIF
|
CAPTURE_0_FROM_I2S_2
|
CAPTURE_1_FROM_SPDIF
;
}
if
(
driver_data
==
MODEL_MERIDIAN
||
driver_data
==
MODEL_HALO
)
{
chip
->
model
.
misc_flags
=
OXYGEN_MISC_MIDI
;
chip
->
model
.
device_config
|=
MIDI_OUTPUT
|
MIDI_INPUT
;
}
...
...
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