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
306f47bd
Commit
306f47bd
authored
Feb 05, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/hda' into topic/hda
parents
8f95c102
e8c0ee5d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
sound/pci/hda/hda_codec.c
sound/pci/hda/hda_codec.c
+5
-4
sound/pci/hda/hda_codec.h
sound/pci/hda/hda_codec.h
+1
-0
No files found.
sound/pci/hda/hda_codec.c
View file @
306f47bd
...
@@ -487,7 +487,6 @@ int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
...
@@ -487,7 +487,6 @@ int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
{
{
struct
hda_bus
*
bus
;
struct
hda_bus
*
bus
;
int
err
;
int
err
;
char
qname
[
8
];
static
struct
snd_device_ops
dev_ops
=
{
static
struct
snd_device_ops
dev_ops
=
{
.
dev_register
=
snd_hda_bus_dev_register
,
.
dev_register
=
snd_hda_bus_dev_register
,
.
dev_free
=
snd_hda_bus_dev_free
,
.
dev_free
=
snd_hda_bus_dev_free
,
...
@@ -517,10 +516,12 @@ int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
...
@@ -517,10 +516,12 @@ int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
mutex_init
(
&
bus
->
cmd_mutex
);
mutex_init
(
&
bus
->
cmd_mutex
);
INIT_LIST_HEAD
(
&
bus
->
codec_list
);
INIT_LIST_HEAD
(
&
bus
->
codec_list
);
snprintf
(
qname
,
sizeof
(
qname
),
"hda%d"
,
card
->
number
);
snprintf
(
bus
->
workq_name
,
sizeof
(
bus
->
workq_name
),
bus
->
workq
=
create_workqueue
(
qname
);
"hd-audio%d"
,
card
->
number
);
bus
->
workq
=
create_singlethread_workqueue
(
bus
->
workq_name
);
if
(
!
bus
->
workq
)
{
if
(
!
bus
->
workq
)
{
snd_printk
(
KERN_ERR
"cannot create workqueue %s
\n
"
,
qname
);
snd_printk
(
KERN_ERR
"cannot create workqueue %s
\n
"
,
bus
->
workq_name
);
kfree
(
bus
);
kfree
(
bus
);
return
-
ENOMEM
;
return
-
ENOMEM
;
}
}
...
...
sound/pci/hda/hda_codec.h
View file @
306f47bd
...
@@ -614,6 +614,7 @@ struct hda_bus {
...
@@ -614,6 +614,7 @@ struct hda_bus {
/* unsolicited event queue */
/* unsolicited event queue */
struct
hda_bus_unsolicited
*
unsol
;
struct
hda_bus_unsolicited
*
unsol
;
char
workq_name
[
16
];
struct
workqueue_struct
*
workq
;
/* common workqueue for codecs */
struct
workqueue_struct
*
workq
;
/* common workqueue for codecs */
/* assigned PCMs */
/* assigned PCMs */
...
...
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