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
1475ef0f
Commit
1475ef0f
authored
Jul 04, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/hda' into topic/hda
parents
b0bb3aa6
02358fcf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
6 deletions
+19
-6
sound/pci/hda/hda_codec.c
sound/pci/hda/hda_codec.c
+10
-4
sound/pci/hda/hda_intel.c
sound/pci/hda/hda_intel.c
+7
-0
sound/pci/hda/patch_sigmatel.c
sound/pci/hda/patch_sigmatel.c
+2
-2
No files found.
sound/pci/hda/hda_codec.c
View file @
1475ef0f
...
...
@@ -3467,10 +3467,16 @@ int snd_hda_multi_out_analog_open(struct hda_codec *codec,
}
mutex_lock
(
&
codec
->
spdif_mutex
);
if
(
mout
->
share_spdif
)
{
runtime
->
hw
.
rates
&=
mout
->
spdif_rates
;
runtime
->
hw
.
formats
&=
mout
->
spdif_formats
;
if
(
mout
->
spdif_maxbps
<
hinfo
->
maxbps
)
hinfo
->
maxbps
=
mout
->
spdif_maxbps
;
if
((
runtime
->
hw
.
rates
&
mout
->
spdif_rates
)
&&
(
runtime
->
hw
.
formats
&
mout
->
spdif_formats
))
{
runtime
->
hw
.
rates
&=
mout
->
spdif_rates
;
runtime
->
hw
.
formats
&=
mout
->
spdif_formats
;
if
(
mout
->
spdif_maxbps
<
hinfo
->
maxbps
)
hinfo
->
maxbps
=
mout
->
spdif_maxbps
;
}
else
{
mout
->
share_spdif
=
0
;
/* FIXME: need notify? */
}
}
mutex_unlock
(
&
codec
->
spdif_mutex
);
}
...
...
sound/pci/hda/hda_intel.c
View file @
1475ef0f
...
...
@@ -1469,6 +1469,7 @@ static int azx_pcm_open(struct snd_pcm_substream *substream)
mutex_unlock
(
&
chip
->
open_mutex
);
return
err
;
}
snd_pcm_limit_hw_rates
(
runtime
);
spin_lock_irqsave
(
&
chip
->
reg_lock
,
flags
);
azx_dev
->
substream
=
substream
;
azx_dev
->
running
=
0
;
...
...
@@ -1478,6 +1479,12 @@ static int azx_pcm_open(struct snd_pcm_substream *substream)
snd_pcm_set_sync
(
substream
);
mutex_unlock
(
&
chip
->
open_mutex
);
if
(
snd_BUG_ON
(
!
runtime
->
hw
.
channels_min
||
!
runtime
->
hw
.
channels_max
))
return
-
EINVAL
;
if
(
snd_BUG_ON
(
!
runtime
->
hw
.
formats
))
return
-
EINVAL
;
if
(
snd_BUG_ON
(
!
runtime
->
hw
.
rates
))
return
-
EINVAL
;
return
0
;
}
...
...
sound/pci/hda/patch_sigmatel.c
View file @
1475ef0f
...
...
@@ -1590,8 +1590,6 @@ static struct snd_pci_quirk stac9200_cfg_tbl[] = {
/* SigmaTel reference board */
SND_PCI_QUIRK
(
PCI_VENDOR_ID_INTEL
,
0x2668
,
"DFI LanParty"
,
STAC_REF
),
SND_PCI_QUIRK
(
PCI_VENDOR_ID_INTEL
,
0xfb30
,
"SigmaTel"
,
STAC_9205_REF
),
SND_PCI_QUIRK
(
PCI_VENDOR_ID_DFI
,
0x3101
,
"DFI LanParty"
,
STAC_REF
),
/* Dell laptops have BIOS problem */
...
...
@@ -2344,6 +2342,8 @@ static struct snd_pci_quirk stac9205_cfg_tbl[] = {
/* SigmaTel reference board */
SND_PCI_QUIRK
(
PCI_VENDOR_ID_INTEL
,
0x2668
,
"DFI LanParty"
,
STAC_9205_REF
),
SND_PCI_QUIRK
(
PCI_VENDOR_ID_INTEL
,
0xfb30
,
"SigmaTel"
,
STAC_9205_REF
),
SND_PCI_QUIRK
(
PCI_VENDOR_ID_DFI
,
0x3101
,
"DFI LanParty"
,
STAC_9205_REF
),
/* Dell */
...
...
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