Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xcap
xcap-capability-linux
Commits
1475ef0f
Commit
1475ef0f
authored
Jul 04, 2009
by
Takashi Iwai
Browse files
Merge branch 'fix/hda' into topic/hda
parents
b0bb3aa6
02358fcf
Changes
3
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
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