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
0baddbc8
Commit
0baddbc8
authored
Jun 29, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/lx6464es' into for-linus
* fix/lx6464es: ALSA: lx6464es - configure ethersound io channels
parents
cdae219c
7e895cfa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
sound/pci/lx6464es/lx6464es.c
sound/pci/lx6464es/lx6464es.c
+3
-4
No files found.
sound/pci/lx6464es/lx6464es.c
View file @
0baddbc8
...
...
@@ -654,13 +654,12 @@ static int __devinit lx_init_ethersound_config(struct lx6464es *chip)
int
i
;
u32
orig_conf_es
=
lx_dsp_reg_read
(
chip
,
eReg_CONFES
);
u32
default_conf_es
=
(
64
<<
IOCR_OUTPUTS_OFFSET
)
|
/* configure 64 io channels */
u32
conf_es
=
(
orig_conf_es
&
CONFES_READ_PART_MASK
)
|
(
64
<<
IOCR_INPUTS_OFFSET
)
|
(
64
<<
IOCR_OUTPUTS_OFFSET
)
|
(
FREQ_RATIO_SINGLE_MODE
<<
FREQ_RATIO_OFFSET
);
u32
conf_es
=
(
orig_conf_es
&
CONFES_READ_PART_MASK
)
|
(
default_conf_es
&
CONFES_WRITE_PART_MASK
);
snd_printdd
(
"->lx_init_ethersound
\n
"
);
chip
->
freq_ratio
=
FREQ_RATIO_SINGLE_MODE
;
...
...
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